* [PATCH i-g-t] tests/intel/xe_eu_stall: Skip test if feature is not supported
@ 2025-06-03 16:07 Jakub Kolakowski
2025-06-03 19:33 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jakub Kolakowski @ 2025-06-03 16:07 UTC (permalink / raw)
To: igt-dev
Cc: Jakub Kolakowski, Harish Chegondi, Ashutosh Dixit, Adam Miszczak,
Lukasz Laguna, Marcin Bernatowicz
Add a helper to check for feature support. If feature isn't supported
skip the test.
Cc: Harish Chegondi <harish.chegondi@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Signed-off-by: Jakub Kolakowski <jakub1.kolakowski@intel.com>
---
tests/intel/xe_eu_stall.c | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c
index 411c30871..f3d7c1974 100644
--- a/tests/intel/xe_eu_stall.c
+++ b/tests/intel/xe_eu_stall.c
@@ -267,6 +267,31 @@ static void xe_eu_stall_ioctl_err(int fd, enum drm_xe_observation_op op, void *a
errno = 0;
}
+static bool is_eu_stall_supported(int drm_fd)
+{
+ int stream_fd;
+ uint64_t properties[] = {
+ DRM_XE_EU_STALL_PROP_GT_ID, p_gt_id,
+ DRM_XE_EU_STALL_PROP_SAMPLE_RATE, DEFAULT_SAMPLE_RATE,
+ DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, p_num_reports,
+ };
+
+ struct xe_eu_stall_open_prop props = {
+ .num_properties = ARRAY_SIZE(properties) / 2,
+ .properties_ptr = to_user_pointer(properties),
+ };
+
+ stream_fd = xe_eu_stall_ioctl(drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, &props);
+
+ if(stream_fd == -1 && errno == ENODEV) {
+ close(stream_fd);
+ return false;
+ }
+
+ close(stream_fd);
+ return true;
+}
+
static uint64_t read_u64_file(const char *path)
{
FILE *f;
@@ -654,6 +679,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL)
igt_require_fd(drm_fd);
devid = intel_get_drm_devid(drm_fd);
igt_require(IS_PONTEVECCHIO(devid) || intel_graphics_ver(devid) >= IP_VER(20, 0));
+ igt_require_f(is_eu_stall_supported(drm_fd), "EU stall sampling not supported\n");
igt_require_f(igt_get_gpgpu_fillfunc(devid), "no gpgpu-fill function\n");
igt_require_f(!stat(OBSERVATION_PARANOID, &sb), "no observation_paranoid file\n");
if (output_file) {
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_eu_stall: Skip test if feature is not supported
2025-06-03 16:07 [PATCH i-g-t] tests/intel/xe_eu_stall: Skip test if feature is not supported Jakub Kolakowski
@ 2025-06-03 19:33 ` Patchwork
2025-06-03 19:50 ` ✗ i915.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-06-03 19:33 UTC (permalink / raw)
To: Jakub Kolakowski; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 881 bytes --]
== Series Details ==
Series: tests/intel/xe_eu_stall: Skip test if feature is not supported
URL : https://patchwork.freedesktop.org/series/149781/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8393_BAT -> XEIGTPW_13234_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8393 -> IGTPW_13234
IGTPW_13234: 13234
IGT_8393: 6a256bfe3025b94fcef3757e4edd6b2198cecf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3186-1a8dc5c25521273300f881e23c7294453b015048: 1a8dc5c25521273300f881e23c7294453b015048
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/index.html
[-- Attachment #2: Type: text/html, Size: 1426 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_eu_stall: Skip test if feature is not supported
2025-06-03 16:07 [PATCH i-g-t] tests/intel/xe_eu_stall: Skip test if feature is not supported Jakub Kolakowski
2025-06-03 19:33 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2025-06-03 19:50 ` Patchwork
2025-06-04 6:03 ` [PATCH i-g-t] " Harish Chegondi
2025-06-04 18:03 ` ✗ Xe.CI.Full: failure for " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-06-03 19:50 UTC (permalink / raw)
To: Jakub Kolakowski; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11071 bytes --]
== Series Details ==
Series: tests/intel/xe_eu_stall: Skip test if feature is not supported
URL : https://patchwork.freedesktop.org/series/149781/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8393 -> IGTPW_13234
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_13234 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_13234, 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_13234/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (1): bat-arlh-2
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_13234:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@dmabuf:
- fi-skl-6600u: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8393/fi-skl-6600u/igt@i915_selftest@live@dmabuf.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/fi-skl-6600u/igt@i915_selftest@live@dmabuf.html
Known issues
------------
Here are the changes found in IGTPW_13234 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- bat-arlh-2: NOTRUN -> [SKIP][3] ([i915#11345] / [i915#11346]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#11346] / [i915#1849])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@basic:
- bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#11343] / [i915#11346])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#10197] / [i915#10211] / [i915#11346] / [i915#11725])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#11346] / [i915#12637]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#10206] / [i915#11346] / [i915#11724])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][10] -> [DMESG-WARN][11] ([i915#13494])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8393/bat-mtlp-9/igt@i915_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_pm_rps@basic-api:
- bat-arlh-2: NOTRUN -> [SKIP][12] ([i915#10209] / [i915#11346] / [i915#11681])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8393/bat-mtlp-8/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-mtlp-8/igt@i915_selftest@live.html
- bat-dg2-8: [PASS][15] -> [ABORT][16] ([i915#13696] / [i915#14201])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8393/bat-dg2-8/igt@i915_selftest@live.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-dg2-8/igt@i915_selftest@live.html
- bat-arlh-2: NOTRUN -> [ABORT][17] ([i915#13723]) +1 other test abort
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@i915_selftest@live.html
- fi-skl-6600u: [PASS][18] -> [INCOMPLETE][19] ([i915#14314])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8393/fi-skl-6600u/igt@i915_selftest@live.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/fi-skl-6600u/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_contexts:
- bat-dg2-8: [PASS][20] -> [ABORT][21] ([i915#14201])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8393/bat-dg2-8/igt@i915_selftest@live@gt_contexts.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-dg2-8/igt@i915_selftest@live@gt_contexts.html
* igt@i915_selftest@live@guc_multi_lrc:
- bat-twl-2: [PASS][22] -> [INCOMPLETE][23] ([i915#14096]) +1 other test incomplete
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8393/bat-twl-2/igt@i915_selftest@live@guc_multi_lrc.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-twl-2/igt@i915_selftest@live@guc_multi_lrc.html
* igt@intel_hwmon@hwmon-read:
- bat-arlh-2: NOTRUN -> [SKIP][24] ([i915#11346] / [i915#11680] / [i915#7707]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][25] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][26] ([i915#10200] / [i915#11346] / [i915#11666]) +8 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_psr@psr-primary-page-flip:
- bat-arlh-2: NOTRUN -> [SKIP][27] ([i915#11346]) +32 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arlh-2: NOTRUN -> [SKIP][28] ([i915#10208] / [i915#11346] / [i915#8809])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-arlh-2: NOTRUN -> [SKIP][29] ([i915#10212] / [i915#11346] / [i915#11726])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arlh-2: NOTRUN -> [SKIP][30] ([i915#10214] / [i915#11346] / [i915#11726])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arlh-2: NOTRUN -> [SKIP][31] ([i915#10216] / [i915#11346] / [i915#11723])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arlh-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [DMESG-FAIL][32] ([i915#12061]) -> [PASS][33] +1 other test pass
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8393/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [DMESG-FAIL][34] ([i915#12061]) -> [PASS][35] +1 other test pass
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8393/bat-arls-6/igt@i915_selftest@live@workarounds.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11680
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724
[i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725
[i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13696]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13696
[i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723
[i915#14096]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14096
[i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201
[i915#14314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14314
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8393 -> IGTPW_13234
CI-20190529: 20190529
CI_DRM_16640: ba486e3b10ce5b4ee4d1ffc58aa4cc3b669c02a3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13234: 13234
IGT_8393: 6a256bfe3025b94fcef3757e4edd6b2198cecf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13234/index.html
[-- Attachment #2: Type: text/html, Size: 13742 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_eu_stall: Skip test if feature is not supported
2025-06-03 16:07 [PATCH i-g-t] tests/intel/xe_eu_stall: Skip test if feature is not supported Jakub Kolakowski
2025-06-03 19:33 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-06-03 19:50 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-06-04 6:03 ` Harish Chegondi
2025-06-04 18:03 ` ✗ Xe.CI.Full: failure for " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Harish Chegondi @ 2025-06-04 6:03 UTC (permalink / raw)
To: Jakub Kolakowski
Cc: igt-dev, Ashutosh Dixit, Adam Miszczak, Lukasz Laguna,
Marcin Bernatowicz
On Tue, Jun 03, 2025 at 04:07:18PM +0000, Jakub Kolakowski wrote:
Hi Jakub,
Thanks for sending this patch. Recently I have been working on a
different but related issue:
https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5131
I have come up with a similar patch with the difference that I have used
a EU stall query IOCTL to check for EU stall support. The query IOCTL is
already being used in the test so I reused the query IOCTL to check for
EU stall support too. I copied you and others on that patch. Can you
please let me know your comments.
> Add a helper to check for feature support. If feature isn't supported
> skip the test.
>
> Cc: Harish Chegondi <harish.chegondi@intel.com>
> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
> Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
> Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Signed-off-by: Jakub Kolakowski <jakub1.kolakowski@intel.com>
> ---
> tests/intel/xe_eu_stall.c | 26 ++++++++++++++++++++++++++
> 1 file changed, 26 insertions(+)
>
> diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c
> index 411c30871..f3d7c1974 100644
> --- a/tests/intel/xe_eu_stall.c
> +++ b/tests/intel/xe_eu_stall.c
> @@ -267,6 +267,31 @@ static void xe_eu_stall_ioctl_err(int fd, enum drm_xe_observation_op op, void *a
> errno = 0;
> }
>
> +static bool is_eu_stall_supported(int drm_fd)
> +{
> + int stream_fd;
> + uint64_t properties[] = {
> + DRM_XE_EU_STALL_PROP_GT_ID, p_gt_id,
> + DRM_XE_EU_STALL_PROP_SAMPLE_RATE, DEFAULT_SAMPLE_RATE,
> + DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, p_num_reports,
> + };
> +
> + struct xe_eu_stall_open_prop props = {
> + .num_properties = ARRAY_SIZE(properties) / 2,
> + .properties_ptr = to_user_pointer(properties),
> + };
> +
> + stream_fd = xe_eu_stall_ioctl(drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, &props);
> +
> + if(stream_fd == -1 && errno == ENODEV) {
> + close(stream_fd);
> + return false;
> + }
> +
> + close(stream_fd);
> + return true;
> +}
> +
> static uint64_t read_u64_file(const char *path)
> {
> FILE *f;
> @@ -654,6 +679,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL)
> igt_require_fd(drm_fd);
> devid = intel_get_drm_devid(drm_fd);
> igt_require(IS_PONTEVECCHIO(devid) || intel_graphics_ver(devid) >= IP_VER(20, 0));
This check would no longer be needed.
> + igt_require_f(is_eu_stall_supported(drm_fd), "EU stall sampling not supported\n");
> igt_require_f(igt_get_gpgpu_fillfunc(devid), "no gpgpu-fill function\n");
> igt_require_f(!stat(OBSERVATION_PARANOID, &sb), "no observation_paranoid file\n");
> if (output_file) {
> --
> 2.34.1
>
Thank You
Harish.
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_eu_stall: Skip test if feature is not supported
2025-06-03 16:07 [PATCH i-g-t] tests/intel/xe_eu_stall: Skip test if feature is not supported Jakub Kolakowski
` (2 preceding siblings ...)
2025-06-04 6:03 ` [PATCH i-g-t] " Harish Chegondi
@ 2025-06-04 18:03 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-06-04 18:03 UTC (permalink / raw)
To: Kolakowski, Jakub1; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 76268 bytes --]
== Series Details ==
Series: tests/intel/xe_eu_stall: Skip test if feature is not supported
URL : https://patchwork.freedesktop.org/series/149781/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8393_FULL -> XEIGTPW_13234_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_13234_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_13234_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 (4 -> 3)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_13234_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@kms_content_protection@type1.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
Known issues
------------
Here are the changes found in XEIGTPW_13234_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
- shard-dg2-set2: [PASS][5] -> [FAIL][6] ([Intel XE#4427]) +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-436/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#873])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-3/igt@kms_async_flips@invalid-async-flip.html
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#873])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#873])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#664])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-4/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2370])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) +8 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2327]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#619])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#610])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +19 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +7 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2191]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2191]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#367]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#367])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) +4 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1512])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-5/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +42 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#787]) +160 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +14 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3432])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#3432])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2907]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +11 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][37] ([Intel XE#3113])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#4418])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#4417]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#4416]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-5/igt@kms_cdclk@plane-scaling.html
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2724]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#4416]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2252]) +9 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2325])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_chamelium_color@degamma.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#306])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#373]) +15 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#373]) +9 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-5/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2341])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-2/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#1188]) +1 other test fail
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2320]) +6 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#308])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2321])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1424]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2291]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2291]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#309]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#323]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#323])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2286]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1508])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#4302])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4354])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#4354])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-sst.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#4354])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-4/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#4294])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#4331])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2244])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@kms_dsc@dsc-with-bpc.html
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2244])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-8/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#4422])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#776])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2373])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-3/igt@kms_feature_discovery@display-2x.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2375])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1135])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-435/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1421]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-8/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2316]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#2316]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][82] -> [FAIL][83] ([Intel XE#3321]) +2 other tests fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][84] -> [FAIL][85] ([Intel XE#301])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html
* igt@kms_flip@bo-too-big-interruptible@a-edp1:
- shard-lnl: NOTRUN -> [TIMEOUT][86] ([Intel XE#1504]) +1 other test timeout
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-1/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][87] -> [INCOMPLETE][88] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1397]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling:
- shard-lnl: NOTRUN -> [FAIL][91] ([Intel XE#4683]) +1 other test fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#455]) +16 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#352])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-4/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#651]) +38 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4141]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2312]) +17 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#651]) +9 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2311]) +18 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2313]) +16 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#656]) +37 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#653]) +44 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2352])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#658])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1469])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#1503])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1450]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-2/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1450] / [Intel XE#2568]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-2/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2925])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2934])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_lowres@tiling-4:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#599]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#4596])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#5021])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [PASS][114] -> [SKIP][115] ([Intel XE#2571])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2763]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#870]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2391])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#736])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#3309])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#3309])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#3309])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2893]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1489]) +9 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2893] / [Intel XE#4608])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/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-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#4608]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1489]) +5 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1128])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-1/igt@kms_psr2_su@page_flip-nv12.html
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2387])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1122])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1406]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-4/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-psr2-primary-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4609]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2850] / [Intel XE#929]) +20 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-5/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#3414]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1127])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2330])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1127])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][142] -> [FAIL][143] ([Intel XE#2883])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1435])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [PASS][145] -> [SKIP][146] ([Intel XE#1435])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1091] / [Intel XE#2849])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1091] / [Intel XE#2849])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#1280] / [Intel XE#455]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1123])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#4837]) +8 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-4/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_eudebug@vma-ufence-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#4837]) +18 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@xe_eudebug@vma-ufence-faultable.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#4837]) +7 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_evict@evict-beng-large-cm:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#688]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-8/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1392]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: [PASS][157] -> [SKIP][158] ([Intel XE#1392]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-435/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2322]) +6 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1392]) +6 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#288]) +36 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_system_allocator@many-stride-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#4943]) +14 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@xe_exec_system_allocator@many-stride-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#4943]) +16 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#4915]) +321 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2229])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_oa@invalid-create-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-435/igt@xe_oa@invalid-create-userspace-config.html
* igt@xe_oa@syncs-ufence-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@xe_oa@syncs-ufence-wait.html
* igt@xe_pat@pat-index-xelpg:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#979])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][169] ([Intel XE#1173])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#2284] / [Intel XE#366])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2284]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-3/igt@xe_pm@s3-d3cold-basic-exec.html
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#2284] / [Intel XE#366])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-8/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: [PASS][173] -> [ABORT][174] ([Intel XE#1794])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-lnl-7/igt@xe_pm@s4-vm-bind-prefetch.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#579])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@cpg-basic:
- shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#584])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-2/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#4650]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#4650]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#4650])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@display-pxp-fb:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#4733]) +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-435/igt@xe_pxp@display-pxp-fb.html
* igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#4733])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#944]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#944]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#944]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@xe_query@multigpu-query-topology.html
* igt@xe_render_copy@render-stress-0-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#4814]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@xe_render_copy@render-stress-0-copies.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#4130]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-463/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][187] ([Intel XE#3862]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [SKIP][189] ([Intel XE#2291]) -> [PASS][190] +3 other tests pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][191] ([Intel XE#2316]) -> [PASS][192] +8 other tests pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [FAIL][193] ([Intel XE#3321]) -> [PASS][194] +1 other test pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [FAIL][195] ([Intel XE#301]) -> [PASS][196] +4 other tests pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][197] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][198] +1 other test pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@a-hdmi-a3:
- shard-bmg: [INCOMPLETE][199] ([Intel XE#2049]) -> [PASS][200] +1 other test pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-1/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@a-hdmi-a3.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-2/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@a-hdmi-a3.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][201] ([Intel XE#2231] / [Intel XE#4208]) -> [PASS][202] +7 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [SKIP][203] ([Intel XE#1503]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_lease@lease-invalid-connector:
- shard-dg2-set2: [SKIP][205] ([Intel XE#4208] / [i915#2575]) -> [PASS][206] +13 other tests pass
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_lease@lease-invalid-connector.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_lease@lease-invalid-connector.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][207] ([Intel XE#718]) -> [PASS][208] +1 other test pass
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_rmfb@close-fd:
- shard-bmg: [INCOMPLETE][209] -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-6/igt@kms_rmfb@close-fd.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_rmfb@close-fd.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][211] ([Intel XE#4459]) -> [PASS][212] +1 other test pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-dg2-set2: [SKIP][213] ([Intel XE#1392]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [FAIL][215] ([Intel XE#5018]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [ABORT][217] ([Intel XE#1794]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-lnl-7/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_vm@invalid-extensions:
- shard-dg2-set2: [SKIP][219] ([Intel XE#4208]) -> [PASS][220] +19 other tests pass
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_vm@invalid-extensions.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-435/igt@xe_vm@invalid-extensions.html
#### Warnings ####
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][221] ([Intel XE#2231] / [Intel XE#4208]) -> [SKIP][222] ([Intel XE#1124])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][223] ([Intel XE#2231] / [Intel XE#4208]) -> [SKIP][224] ([Intel XE#455] / [Intel XE#787])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [SKIP][225] ([Intel XE#2231] / [Intel XE#4208]) -> [INCOMPLETE][226] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-dg2-set2: [SKIP][227] ([Intel XE#4208] / [i915#2575]) -> [SKIP][228] ([Intel XE#373])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][229] ([Intel XE#1188]) -> [SKIP][230] ([Intel XE#2341])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-8/igt@kms_content_protection@uevent.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2-set2: [SKIP][231] ([Intel XE#4208] / [i915#2575]) -> [SKIP][232] ([Intel XE#455])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][233] ([Intel XE#2312]) -> [SKIP][234] ([Intel XE#2311]) +12 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][235] ([Intel XE#2311]) -> [SKIP][236] ([Intel XE#2312]) +17 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][237] ([Intel XE#2231] / [Intel XE#4208]) -> [SKIP][238] ([Intel XE#651]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][239] ([Intel XE#2312]) -> [SKIP][240] ([Intel XE#4141]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][241] ([Intel XE#4141]) -> [SKIP][242] ([Intel XE#2312]) +10 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][243] ([Intel XE#2312]) -> [SKIP][244] ([Intel XE#2313]) +8 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][245] ([Intel XE#2231] / [Intel XE#4208]) -> [SKIP][246] ([Intel XE#653]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][247] ([Intel XE#2313]) -> [SKIP][248] ([Intel XE#2312]) +17 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][249] ([Intel XE#4596]) -> [SKIP][250] ([Intel XE#5021])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][251] ([Intel XE#5021]) -> [SKIP][252] ([Intel XE#4596])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][253] ([Intel XE#2231] / [Intel XE#4208]) -> [SKIP][254] ([Intel XE#1122])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][255] ([Intel XE#4208] / [i915#2575]) -> [SKIP][256] ([Intel XE#1127])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][257] ([Intel XE#4208] / [i915#2575]) -> [SKIP][258] ([Intel XE#3414])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][259] ([Intel XE#4208]) -> [SKIP][260] ([Intel XE#1126])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug@basic-vm-bind-extended:
- shard-dg2-set2: [SKIP][261] ([Intel XE#4208]) -> [SKIP][262] ([Intel XE#4837])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_eudebug@basic-vm-bind-extended.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-extended.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][263] ([Intel XE#4208]) -> [SKIP][264] ([Intel XE#288]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@xe_exec_fault_mode@once-userptr-invalidate-race.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc:
- shard-dg2-set2: [SKIP][265] ([Intel XE#4208]) -> [SKIP][266] ([Intel XE#4915]) +39 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html
* igt@xe_oa@disabled-read-error:
- shard-dg2-set2: [SKIP][267] ([Intel XE#4208]) -> [SKIP][268] ([Intel XE#2541] / [Intel XE#3573])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_oa@disabled-read-error.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@xe_oa@disabled-read-error.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][269] ([Intel XE#1061]) -> [FAIL][270] ([Intel XE#1173])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_peer2peer@read.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-463/igt@xe_peer2peer@read.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][271] ([Intel XE#4208]) -> [SKIP][272] ([Intel XE#2284] / [Intel XE#366])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][273] ([Intel XE#5166]) -> [FAIL][274] ([Intel XE#4819]) +1 other test fail
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-436/igt@xe_pmu@gt-frequency.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-432/igt@xe_pmu@gt-frequency.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: [SKIP][275] ([Intel XE#4208]) -> [SKIP][276] ([Intel XE#944])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_query@multigpu-query-config.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-436/igt@xe_query@multigpu-query-config.html
* igt@xe_spin_batch@spin-mem-copy:
- shard-dg2-set2: [SKIP][277] ([Intel XE#4208]) -> [SKIP][278] ([Intel XE#4821])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8393/shard-dg2-432/igt@xe_spin_batch@spin-mem-copy.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/shard-dg2-433/igt@xe_spin_batch@spin-mem-copy.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4427
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
[Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
[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#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8393 -> IGTPW_13234
IGTPW_13234: 13234
IGT_8393: 6a256bfe3025b94fcef3757e4edd6b2198cecf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3186-1a8dc5c25521273300f881e23c7294453b015048: 1a8dc5c25521273300f881e23c7294453b015048
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13234/index.html
[-- Attachment #2: Type: text/html, Size: 90474 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-06-04 18:04 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-03 16:07 [PATCH i-g-t] tests/intel/xe_eu_stall: Skip test if feature is not supported Jakub Kolakowski
2025-06-03 19:33 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-06-03 19:50 ` ✗ i915.CI.BAT: failure " Patchwork
2025-06-04 6:03 ` [PATCH i-g-t] " Harish Chegondi
2025-06-04 18:03 ` ✗ Xe.CI.Full: failure for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox