Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0
@ 2026-06-26  3:21 James Lin
  2026-06-26  4:12 ` ✓ Xe.CI.BAT: success for " Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: James Lin @ 2026-06-26  3:21 UTC (permalink / raw)
  To: igt-dev; +Cc: alex.hung, sunpeng.li, chiahsuan.chung, Pinglei.lin, James Lin

[Why]
amd_abm builds the backlight sysfs path assuming the amdgpu backlight
device is amdgpu_bl0. The amdgpu backlight device is named amdgpu_bl<N>
where N is derived from the DRM primary node index (see
amdgpu_dm_backlight.c). On systems where the amdgpu DRM node is not
card0 (e.g. simpledrm takes card0 and amdgpu comes up as card1), the
backlight device is amdgpu_bl1, not amdgpu_bl0. The hardcoded
"/sys/class/backlight/amdgpu_bl0" path does not exist, so
backlight_read_max_brightness() and backlight_write_brightness() fail
before any test logic runs, preventing dpms_cycle and the other abm
subtests from executing.

[How]
Add find_backlight_device() to scan /sys/class/backlight for the first
entry beginning with "amdgpu_bl" and store its full path in a
file-scope buffer. Call it from igt_fixture and route the brightness
and max_brightness accessors through the discovered path instead of the
hardcoded amdgpu_bl0 macro. Use igt_require_f() so a machine with no
amdgpu backlight skips cleanly rather than asserting.

Signed-off-by: James Lin <PingLei.Lin@amd.com>
---
 tests/amdgpu/amd_abm.c | 39 ++++++++++++++++++++++++++++++++++++---
 1 file changed, 36 insertions(+), 3 deletions(-)

diff --git a/tests/amdgpu/amd_abm.c b/tests/amdgpu/amd_abm.c
index ba90344d3..7992dfd87 100644
--- a/tests/amdgpu/amd_abm.c
+++ b/tests/amdgpu/amd_abm.c
@@ -31,13 +31,44 @@
 #include <string.h>
 #include <fcntl.h>
 #include <time.h>
+#include <dirent.h>
 
 #define DEBUGFS_CURRENT_BACKLIGHT_PWM "amdgpu_current_backlight_pwm"
 #define DEBUGFS_TARGET_BACKLIGHT_PWM "amdgpu_target_backlight_pwm"
-#define BACKLIGHT_PATH "/sys/class/backlight/amdgpu_bl0"
+#define BACKLIGHT_DIR "/sys/class/backlight"
 #define PANEL_POWER_SAVINGS_ATTR "amdgpu/panel_power_savings"
 #define MK_COLOR(r, g, b)	((0 << 24) | (r << 16) | (g << 8) | b)
 
+/*
+ * The amdgpu backlight device is named amdgpu_bl<N> where N is derived from
+ * the DRM primary node index (see amdgpu_dm_backlight.c). On systems where
+ * the amdgpu DRM node is not card0 (e.g. card1), the device is amdgpu_bl1,
+ * not amdgpu_bl0. Discover it at runtime instead of hardcoding the name.
+ */
+static char backlight_path[PATH_MAX];
+
+static void find_backlight_device(void)
+{
+	DIR *dir;
+	struct dirent *ent;
+
+	dir = opendir(BACKLIGHT_DIR);
+	igt_require_f(dir, "Cannot open %s\n", BACKLIGHT_DIR);
+
+	while ((ent = readdir(dir))) {
+		if (strncmp(ent->d_name, "amdgpu_bl", 9) == 0) {
+			snprintf(backlight_path, sizeof(backlight_path),
+				 "%s/%s", BACKLIGHT_DIR, ent->d_name);
+			break;
+		}
+	}
+	closedir(dir);
+
+	igt_require_f(backlight_path[0] != '\0',
+		      "No amdgpu_bl* backlight device found in %s\n",
+		      BACKLIGHT_DIR);
+}
+
 typedef struct data {
 	igt_display_t display;
 	igt_plane_t *primary;
@@ -234,7 +265,7 @@ static int backlight_write_brightness(int value)
 	char src[64];
 	int len;
 
-	igt_assert(snprintf(full, PATH_MAX, "%s/%s", BACKLIGHT_PATH, "brightness") < PATH_MAX);
+	igt_assert(snprintf(full, PATH_MAX, "%s/%s", backlight_path, "brightness") < PATH_MAX);
 	fd = open(full, O_WRONLY);
 	if (fd == -1)
 		return -errno;
@@ -288,7 +319,7 @@ static int backlight_read_max_brightness(int *result)
 	char dst[64];
 	int r, e;
 
-	igt_assert(snprintf(full, PATH_MAX, "%s/%s", BACKLIGHT_PATH, "max_brightness") < PATH_MAX);
+	igt_assert(snprintf(full, PATH_MAX, "%s/%s", backlight_path, "max_brightness") < PATH_MAX);
 
 	fd = open(full, O_RDONLY);
 	if (fd == -1)
@@ -528,6 +559,8 @@ int igt_main()
 
 		igt_display_require(&data.display, data.drm_fd);
 
+		find_backlight_device();
+
 		test_init(&data);
 	}
 
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* ✓ Xe.CI.BAT: success for tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0
  2026-06-26  3:21 [PATCH i-g-t] tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0 James Lin
@ 2026-06-26  4:12 ` Patchwork
  2026-06-26  4:28 ` ✓ i915.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-06-26  4:12 UTC (permalink / raw)
  To: James Lin; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 6634 bytes --]

== Series Details ==

Series: tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0
URL   : https://patchwork.freedesktop.org/series/169232/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8987_BAT -> XEIGTPW_15442_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in XEIGTPW_15442_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_ccs@block-copy-compressed@linear-compressed-compfmt0-vram01-vram01:
    - bat-atsm-2:         NOTRUN -> [INCOMPLETE][1] ([Intel XE#8437])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-atsm-2/igt@xe_ccs@block-copy-compressed@linear-compressed-compfmt0-vram01-vram01.html

  * igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_render-instance-0-tile-0-vram0-memory:
    - bat-bmg-2:          [PASS][2] -> [INCOMPLETE][3] ([Intel XE#8437] / [Intel XE#8479])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/bat-bmg-2/igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_render-instance-0-tile-0-vram0-memory.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-bmg-2/igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_render-instance-0-tile-0-vram0-memory.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - bat-bmg-3:          [PASS][4] -> [INCOMPLETE][5] ([Intel XE#8479]) +1 other test incomplete
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
    - bat-bmg-3:          [PASS][6] -> [INCOMPLETE][7] ([Intel XE#8439] / [Intel XE#8479])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/bat-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
    - bat-bmg-3:          [PASS][8] -> [CRASH][9] ([Intel XE#8482])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/bat-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html

  
#### Possible fixes ####

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
    - bat-bmg-3:          [INCOMPLETE][10] ([Intel XE#8439] / [Intel XE#8479]) -> [PASS][11] +2 other tests pass
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
    - bat-bmg-3:          [CRASH][12] ([Intel XE#8482]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - bat-bmg-3:          [FAIL][14] ([Intel XE#8479]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/bat-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  
#### Warnings ####

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
    - bat-bmg-3:          [CRASH][16] ([Intel XE#8438] / [Intel XE#8482]) -> [INCOMPLETE][17] ([Intel XE#8439] / [Intel XE#8479])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
    - bat-bmg-3:          [CRASH][18] ([Intel XE#8482]) -> [INCOMPLETE][19] ([Intel XE#8439] / [Intel XE#8479]) +1 other test incomplete
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
    - bat-bmg-3:          [CRASH][20] ([Intel XE#8482]) -> [TIMEOUT][21] ([Intel XE#8483])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/bat-bmg-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/bat-bmg-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html

  
  [Intel XE#8437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8437
  [Intel XE#8438]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8438
  [Intel XE#8439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8439
  [Intel XE#8479]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8479
  [Intel XE#8482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8482
  [Intel XE#8483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8483


Build changes
-------------

  * IGT: IGT_8987 -> IGTPW_15442
  * Linux: xe-5302-18cd20781ea0de17268c35faf4a2b53b593915c2 -> xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca

  IGTPW_15442: 15442
  IGT_8987: 8987
  xe-5302-18cd20781ea0de17268c35faf4a2b53b593915c2: 18cd20781ea0de17268c35faf4a2b53b593915c2
  xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca: 5fe805765b01f6e3519421039c3ade7cff1074ca

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/index.html

[-- Attachment #2: Type: text/html, Size: 8457 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* ✓ i915.CI.BAT: success for tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0
  2026-06-26  3:21 [PATCH i-g-t] tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0 James Lin
  2026-06-26  4:12 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-06-26  4:28 ` Patchwork
  2026-06-26  5:36 ` [PATCH i-g-t] " Tom Chung
  2026-06-26  5:50 ` ✗ Xe.CI.FULL: failure for " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-06-26  4:28 UTC (permalink / raw)
  To: James Lin; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 3269 bytes --]

== Series Details ==

Series: tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0
URL   : https://patchwork.freedesktop.org/series/169232/
State : success

== Summary ==

CI Bug Log - changes from IGT_8987 -> IGTPW_15442
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15442/index.html

Participating hosts (42 -> 40)
------------------------------

  Missing    (2): bat-dg2-13 fi-snb-2520m 

Known issues
------------

  Here are the changes found in IGTPW_15442 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-rpls-4:         [PASS][1] -> [DMESG-WARN][2] ([i915#13400])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8987/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15442/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_pm_rpm@module-reload:
    - bat-adlp-6:         [PASS][3] -> [DMESG-WARN][4] ([i915#15673]) +78 other tests dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8987/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15442/bat-adlp-6/igt@i915_pm_rpm@module-reload.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@sanitycheck:
    - fi-kbl-7567u:       [DMESG-WARN][5] ([i915#13735]) -> [PASS][6] +79 other tests pass
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8987/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15442/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html

  * igt@kms_busy@basic@flip:
    - fi-kbl-7567u:       [DMESG-WARN][7] ([i915#13735] / [i915#180]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8987/fi-kbl-7567u/igt@kms_busy@basic@flip.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15442/fi-kbl-7567u/igt@kms_busy@basic@flip.html

  * igt@kms_pm_rpm@basic-pci-d3-state:
    - fi-kbl-7567u:       [DMESG-WARN][9] ([i915#13735] / [i915#15673] / [i915#180]) -> [PASS][10] +52 other tests pass
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8987/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15442/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html

  
  [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
  [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
  [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
  [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_8987 -> IGTPW_15442
  * Linux: CI_DRM_18722 -> CI_DRM_18723

  CI-20190529: 20190529
  CI_DRM_18722: 18cd20781ea0de17268c35faf4a2b53b593915c2 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18723: 5fe805765b01f6e3519421039c3ade7cff1074ca @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15442: 15442
  IGT_8987: 8987

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15442/index.html

[-- Attachment #2: Type: text/html, Size: 4294 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH i-g-t] tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0
  2026-06-26  3:21 [PATCH i-g-t] tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0 James Lin
  2026-06-26  4:12 ` ✓ Xe.CI.BAT: success for " Patchwork
  2026-06-26  4:28 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-06-26  5:36 ` Tom Chung
  2026-06-26  5:50 ` ✗ Xe.CI.FULL: failure for " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Tom Chung @ 2026-06-26  5:36 UTC (permalink / raw)
  To: James Lin, igt-dev; +Cc: alex.hung, sunpeng.li

Patch looks good to me.

Reviewed-by: Tom Chung <chiahsuan.chung@amd.com>

On 6/26/2026 11:21 AM, James Lin wrote:
> [Why]
> amd_abm builds the backlight sysfs path assuming the amdgpu backlight
> device is amdgpu_bl0. The amdgpu backlight device is named amdgpu_bl<N>
> where N is derived from the DRM primary node index (see
> amdgpu_dm_backlight.c). On systems where the amdgpu DRM node is not
> card0 (e.g. simpledrm takes card0 and amdgpu comes up as card1), the
> backlight device is amdgpu_bl1, not amdgpu_bl0. The hardcoded
> "/sys/class/backlight/amdgpu_bl0" path does not exist, so
> backlight_read_max_brightness() and backlight_write_brightness() fail
> before any test logic runs, preventing dpms_cycle and the other abm
> subtests from executing.
>
> [How]
> Add find_backlight_device() to scan /sys/class/backlight for the first
> entry beginning with "amdgpu_bl" and store its full path in a
> file-scope buffer. Call it from igt_fixture and route the brightness
> and max_brightness accessors through the discovered path instead of the
> hardcoded amdgpu_bl0 macro. Use igt_require_f() so a machine with no
> amdgpu backlight skips cleanly rather than asserting.
>
> Signed-off-by: James Lin <PingLei.Lin@amd.com>
> ---
>   tests/amdgpu/amd_abm.c | 39 ++++++++++++++++++++++++++++++++++++---
>   1 file changed, 36 insertions(+), 3 deletions(-)
>
> diff --git a/tests/amdgpu/amd_abm.c b/tests/amdgpu/amd_abm.c
> index ba90344d3..7992dfd87 100644
> --- a/tests/amdgpu/amd_abm.c
> +++ b/tests/amdgpu/amd_abm.c
> @@ -31,13 +31,44 @@
>   #include <string.h>
>   #include <fcntl.h>
>   #include <time.h>
> +#include <dirent.h>
>   
>   #define DEBUGFS_CURRENT_BACKLIGHT_PWM "amdgpu_current_backlight_pwm"
>   #define DEBUGFS_TARGET_BACKLIGHT_PWM "amdgpu_target_backlight_pwm"
> -#define BACKLIGHT_PATH "/sys/class/backlight/amdgpu_bl0"
> +#define BACKLIGHT_DIR "/sys/class/backlight"
>   #define PANEL_POWER_SAVINGS_ATTR "amdgpu/panel_power_savings"
>   #define MK_COLOR(r, g, b)	((0 << 24) | (r << 16) | (g << 8) | b)
>   
> +/*
> + * The amdgpu backlight device is named amdgpu_bl<N> where N is derived from
> + * the DRM primary node index (see amdgpu_dm_backlight.c). On systems where
> + * the amdgpu DRM node is not card0 (e.g. card1), the device is amdgpu_bl1,
> + * not amdgpu_bl0. Discover it at runtime instead of hardcoding the name.
> + */
> +static char backlight_path[PATH_MAX];
> +
> +static void find_backlight_device(void)
> +{
> +	DIR *dir;
> +	struct dirent *ent;
> +
> +	dir = opendir(BACKLIGHT_DIR);
> +	igt_require_f(dir, "Cannot open %s\n", BACKLIGHT_DIR);
> +
> +	while ((ent = readdir(dir))) {
> +		if (strncmp(ent->d_name, "amdgpu_bl", 9) == 0) {
> +			snprintf(backlight_path, sizeof(backlight_path),
> +				 "%s/%s", BACKLIGHT_DIR, ent->d_name);
> +			break;
> +		}
> +	}
> +	closedir(dir);
> +
> +	igt_require_f(backlight_path[0] != '\0',
> +		      "No amdgpu_bl* backlight device found in %s\n",
> +		      BACKLIGHT_DIR);
> +}
> +
>   typedef struct data {
>   	igt_display_t display;
>   	igt_plane_t *primary;
> @@ -234,7 +265,7 @@ static int backlight_write_brightness(int value)
>   	char src[64];
>   	int len;
>   
> -	igt_assert(snprintf(full, PATH_MAX, "%s/%s", BACKLIGHT_PATH, "brightness") < PATH_MAX);
> +	igt_assert(snprintf(full, PATH_MAX, "%s/%s", backlight_path, "brightness") < PATH_MAX);
>   	fd = open(full, O_WRONLY);
>   	if (fd == -1)
>   		return -errno;
> @@ -288,7 +319,7 @@ static int backlight_read_max_brightness(int *result)
>   	char dst[64];
>   	int r, e;
>   
> -	igt_assert(snprintf(full, PATH_MAX, "%s/%s", BACKLIGHT_PATH, "max_brightness") < PATH_MAX);
> +	igt_assert(snprintf(full, PATH_MAX, "%s/%s", backlight_path, "max_brightness") < PATH_MAX);
>   
>   	fd = open(full, O_RDONLY);
>   	if (fd == -1)
> @@ -528,6 +559,8 @@ int igt_main()
>   
>   		igt_display_require(&data.display, data.drm_fd);
>   
> +		find_backlight_device();
> +
>   		test_init(&data);
>   	}
>   

^ permalink raw reply	[flat|nested] 5+ messages in thread

* ✗ Xe.CI.FULL: failure for tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0
  2026-06-26  3:21 [PATCH i-g-t] tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0 James Lin
                   ` (2 preceding siblings ...)
  2026-06-26  5:36 ` [PATCH i-g-t] " Tom Chung
@ 2026-06-26  5:50 ` Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-06-26  5:50 UTC (permalink / raw)
  To: James Lin; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 137969 bytes --]

== Series Details ==

Series: tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0
URL   : https://patchwork.freedesktop.org/series/169232/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8987_FULL -> XEIGTPW_15442_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_15442_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_15442_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_15442_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a3:
    - shard-bmg:          NOTRUN -> [WARN][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a3.html

  * igt@kms_rotation_crc@primary-rotation-180:
    - shard-bmg:          [PASS][2] -> [DMESG-WARN][3]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-180.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@kms_rotation_crc@primary-rotation-180.html

  * igt@xe_exec_system_allocator@process-many-execqueues-malloc-prefetch-madvise:
    - shard-bmg:          [PASS][4] -> [FAIL][5] +1 other test fail
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@xe_exec_system_allocator@process-many-execqueues-malloc-prefetch-madvise.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@xe_exec_system_allocator@process-many-execqueues-malloc-prefetch-madvise.html

  * igt@xe_exec_system_allocator@process-many-stride-mmap-file-mlock-nomemset:
    - shard-bmg:          NOTRUN -> [FAIL][6] +2 other tests fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_exec_system_allocator@process-many-stride-mmap-file-mlock-nomemset.html

  * igt@xe_pmu@engine-activity-accuracy-50:
    - shard-lnl:          [PASS][7] -> [FAIL][8] +5 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-50.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50.html

  
#### Warnings ####

  * igt@kms_bw@connected-linear-tiling-1-displays-target-2160x1440p:
    - shard-bmg:          [CRASH][9] ([Intel XE#8449]) -> [INCOMPLETE][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-5/igt@kms_bw@connected-linear-tiling-1-displays-target-2160x1440p.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_bw@connected-linear-tiling-1-displays-target-2160x1440p.html

  
Known issues
------------

  Here are the changes found in XEIGTPW_15442_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          [PASS][11] -> [FAIL][12] ([Intel XE#7445])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@intel_hwmon@hwmon-write.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [CRASH][13] ([Intel XE#8453])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1407]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-bmg:          [PASS][15] -> [INCOMPLETE][16] ([Intel XE#5643] / [Intel XE#8479])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-bmg:          NOTRUN -> [TIMEOUT][17] ([Intel XE#8446] / [Intel XE#8479]) +2 other tests timeout
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][18] ([Intel XE#5643] / [Intel XE#8479])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2327]) +5 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#7059] / [Intel XE#7085])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][21] ([Intel XE#5643])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][22] ([Intel XE#5643] / [Intel XE#8479])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#610] / [Intel XE#7387])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#1124]) +10 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#1124]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html

  * igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p:
    - shard-bmg:          [PASS][26] -> [INCOMPLETE][27] ([Intel XE#8479]) +4 other tests incomplete
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-4/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-1-displays-target-3840x2160p:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][28] ([Intel XE#8445] / [Intel XE#8479])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-4/igt@kms_bw@connected-linear-tiling-1-displays-target-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][29] ([Intel XE#8479]) +4 other tests incomplete
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#7679])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-target-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#367])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-target-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-target-1920x1080p:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][32] ([Intel XE#8445]) +1 other test incomplete
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@kms_bw@linear-tiling-2-displays-target-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [TIMEOUT][33] ([Intel XE#8469] / [Intel XE#8479])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2887]) +21 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#2887]) +3 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2652]) +25 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#3432])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][38] ([Intel XE#8150] / [Intel XE#8479])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][39] ([Intel XE#8150] / [Intel XE#8437] / [Intel XE#8479])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2325] / [Intel XE#7358])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_color_pipeline@plane-ctm3x4:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#7358]) +3 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#7358])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-7/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2252]) +8 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_frames@hdmi-frame-dump:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#373]) +2 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#7642]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#6974])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html

  * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][47] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html

  * igt@kms_content_protection@suspend-resume:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#7642])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-6/igt@kms_content_protection@suspend-resume.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2320]) +4 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-256x85.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#1424]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#2321] / [Intel XE#7355])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          NOTRUN -> [TIMEOUT][52] ([Intel XE#8451] / [Intel XE#8479])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#309] / [Intel XE#7343])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic:
    - shard-bmg:          [PASS][54] -> [INCOMPLETE][55] ([Intel XE#8151] / [Intel XE#8479])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#1340] / [Intel XE#7435])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#4331] / [Intel XE#7227])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#8265]) +3 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_dsc@dsc-with-output-formats-bigjoiner:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#8265]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#6126] / [Intel XE#776])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@display-4x:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#1138] / [Intel XE#7344])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2375])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2374] / [Intel XE#6127])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#2374] / [Intel XE#6128])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [PASS][65] -> [INCOMPLETE][66] ([Intel XE#8155] / [Intel XE#8479]) +1 other test incomplete
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-edp1:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][67] ([Intel XE#8479] / [Intel XE#8488])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-edp1.html

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [PASS][68] -> [CRASH][69] ([Intel XE#8461])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling@pipe-a-valid-mode:
    - shard-bmg:          [PASS][71] -> [TIMEOUT][72] ([Intel XE#8467] / [Intel XE#8479]) +3 other tests timeout
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling@pipe-a-valid-mode.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [TIMEOUT][73] ([Intel XE#8467] / [Intel XE#8479]) +2 other tests timeout
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#7179]) +1 other test skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html

  * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#4141]) +16 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#8440] / [Intel XE#8480]) +46 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#2311]) +75 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-shrfb-scaledprimary:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#6312]) +4 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [TIMEOUT][81] ([Intel XE#8479])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-render:
    - shard-bmg:          [PASS][82] -> [TIMEOUT][83] ([Intel XE#8479])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-render.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [PASS][84] -> [TIMEOUT][85] ([Intel XE#8466] / [Intel XE#8479]) +3 other tests timeout
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [TIMEOUT][86] ([Intel XE#8466] / [Intel XE#8479]) +2 other tests timeout
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          [PASS][87] -> [INCOMPLETE][88] ([Intel XE#8368] / [Intel XE#8479])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-4/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-render.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#7905]) +13 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#7061]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#7399])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#7399])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html

  * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#7865]) +7 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#656] / [Intel XE#7905]) +13 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#7061] / [Intel XE#7356]) +6 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-pri-indfb-multidraw:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#2313]) +61 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_frontbuffer_tracking@psrhdr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#7061]) +8 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html

  * igt@kms_hdr@static-swap:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#1503])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@kms_hdr@static-swap.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#2486])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][100] ([Intel XE#1035] / [Intel XE#8479]) +4 other tests incomplete
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][101] ([Intel XE#1035] / [Intel XE#8479])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-a-plane-0:
    - shard-bmg:          [PASS][102] -> [TIMEOUT][103] ([Intel XE#8465])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-a-plane-0.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#8303]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#8303]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#7283]) +2 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#599])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@kms_plane_lowres@tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][108] ([Intel XE#2393])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
    - shard-bmg:          [PASS][109] -> [INCOMPLETE][110] ([Intel XE#8459] / [Intel XE#8479]) +5 other tests incomplete
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
    - shard-lnl:          NOTRUN -> [SKIP][111] ([Intel XE#2763] / [Intel XE#6886]) +7 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation@pr:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#8395])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation@pr.html

  * igt@kms_pm_dc@dc3co-vpb-simulation@psr2:
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#8396])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation@psr2.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][115] ([Intel XE#2499])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][116] ([Intel XE#1489]) +9 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-lnl:          NOTRUN -> [SKIP][117] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#4608])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#4608] / [Intel XE#7304])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
    - shard-lnl:          [PASS][120] -> [INCOMPLETE][121] ([Intel XE#8479]) +3 other tests incomplete
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-bmg:          NOTRUN -> [SKIP][122] ([Intel XE#2387] / [Intel XE#7429])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr2-primary-page-flip:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#1406] / [Intel XE#7345])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-page-flip.html

  * igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][124] ([Intel XE#1406] / [Intel XE#4609])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html

  * igt@kms_psr@pr-cursor-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#1406])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-8/igt@kms_psr@pr-cursor-plane-onoff.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#2234] / [Intel XE#2850]) +20 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#3904] / [Intel XE#7342]) +3 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-lnl:          NOTRUN -> [SKIP][128] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-6/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#1127] / [Intel XE#5813])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_sharpness_filter@filter-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#6503]) +1 other test skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_sharpness_filter@filter-dpms.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          NOTRUN -> [SKIP][131] ([Intel XE#2426] / [Intel XE#5848])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@lobf-dc3co:
    - shard-bmg:          NOTRUN -> [SKIP][132] ([Intel XE#8397])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@kms_vrr@lobf-dc3co.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          NOTRUN -> [SKIP][133] ([Intel XE#1499]) +1 other test skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_vrr@max-min.html

  * igt@xe_ccs@block-copy-uncompressed:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][134] ([Intel XE#8437] / [Intel XE#8479]) +8 other tests incomplete
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@xe_ccs@block-copy-uncompressed.html

  * igt@xe_create@create-big-vram:
    - shard-lnl:          NOTRUN -> [SKIP][135] ([Intel XE#1062] / [Intel XE#7318] / [Intel XE#7457])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-4/igt@xe_create@create-big-vram.html

  * igt@xe_eudebug@basic-vm-bind-vm-destroy:
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#7636]) +18 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-vm-destroy.html

  * igt@xe_eudebug@discovery-empty-clients:
    - shard-lnl:          NOTRUN -> [SKIP][137] ([Intel XE#7636]) +6 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@xe_eudebug@discovery-empty-clients.html

  * igt@xe_evict@evict-small-multi-queue-priority:
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#8370]) +1 other test skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@xe_evict@evict-small-multi-queue-priority.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html

  * igt@xe_exec_balancer@many-execqueues-virtual-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][140] ([Intel XE#7482]) +8 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][141] ([Intel XE#8439] / [Intel XE#8479])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][142] ([Intel XE#1392]) +2 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][143] ([Intel XE#2322] / [Intel XE#7372]) +7 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][144] ([Intel XE#8374]) +16 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-prefetch.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][145] ([Intel XE#8374]) +1 other test skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem:
    - shard-lnl:          NOTRUN -> [SKIP][146] ([Intel XE#8364]) +11 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-8/igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem.html

  * igt@xe_exec_multi_queue@two-queues-priority:
    - shard-bmg:          NOTRUN -> [SKIP][147] ([Intel XE#8364]) +33 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-priority.html

  * igt@xe_exec_reset@cm-multi-queue-gt-reset:
    - shard-bmg:          NOTRUN -> [SKIP][148] ([Intel XE#8369]) +2 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_exec_reset@cm-multi-queue-gt-reset.html

  * igt@xe_exec_reset@multi-queue-cancel:
    - shard-lnl:          NOTRUN -> [SKIP][149] ([Intel XE#8369])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@xe_exec_reset@multi-queue-cancel.html

  * igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch-madvise:
    - shard-bmg:          NOTRUN -> [TIMEOUT][150] ([Intel XE#8356] / [Intel XE#8447])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch-madvise.html

  * igt@xe_exec_system_allocator@many-large-execqueues-mmap-shared-remap-dontunmap:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][151] ([Intel XE#8159] / [Intel XE#8437] / [Intel XE#8479]) +1 other test incomplete
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_exec_system_allocator@many-large-execqueues-mmap-shared-remap-dontunmap.html

  * igt@xe_exec_system_allocator@many-mmap-free:
    - shard-lnl:          NOTRUN -> [ABORT][152] ([Intel XE#8007])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@xe_exec_system_allocator@many-mmap-free.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-multi-fault:
    - shard-bmg:          [PASS][153] -> [FAIL][154] ([Intel XE#8479]) +6 other tests fail
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-multi-fault.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-multi-fault.html

  * igt@xe_exec_system_allocator@process-many-stride-malloc-prefetch-race:
    - shard-bmg:          NOTRUN -> [FAIL][155] ([Intel XE#8479]) +2 other tests fail
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_exec_system_allocator@process-many-stride-malloc-prefetch-race.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-race-nomemset:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][156] ([Intel XE#7928] / [Intel XE#8479])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-race-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-race:
    - shard-bmg:          [PASS][157] -> [TIMEOUT][158] ([Intel XE#8447] / [Intel XE#8479])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-race.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-race.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-madvise:
    - shard-bmg:          NOTRUN -> [TIMEOUT][159] ([Intel XE#8447] / [Intel XE#8479])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-madvise.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-file-mlock:
    - shard-bmg:          [PASS][160] -> [INCOMPLETE][161] ([Intel XE#8159] / [Intel XE#8437] / [Intel XE#8479]) +1 other test incomplete
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-file-mlock.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-file-mlock.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-shared-remap-dontunmap:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][162] ([Intel XE#8479]) +19 other tests incomplete
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-shared-remap-dontunmap.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-free-nomemset:
    - shard-bmg:          [PASS][163] -> [SKIP][164] ([Intel XE#8440] / [Intel XE#8480]) +71 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-free-nomemset.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-free-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-file-nomemset:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][165] ([Intel XE#8437] / [Intel XE#8479]) +7 other tests incomplete
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-file-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-prefetch-shared:
    - shard-bmg:          [PASS][166] -> [INCOMPLETE][167] ([Intel XE#8159] / [Intel XE#8479]) +16 other tests incomplete
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-prefetch-shared.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-prefetch-shared.html

  * igt@xe_exec_system_allocator@threads-shared-vm-shared-alloc-many-stride-malloc-race:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][168] ([Intel XE#8159] / [Intel XE#8479]) +8 other tests incomplete
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-shared-alloc-many-stride-malloc-race.html

  * igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [TIMEOUT][169] ([Intel XE#8470] / [Intel XE#8479])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][170] ([Intel XE#8378])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][171] ([Intel XE#8366] / [Intel XE#8479])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][172] ([Intel XE#8378]) +14 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
    - shard-bmg:          [PASS][173] -> [CRASH][174] ([Intel XE#8448])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early:
    - shard-bmg:          NOTRUN -> [CRASH][175] ([Intel XE#8448])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html

  * igt@xe_gt_freq@freq_suspend:
    - shard-lnl:          NOTRUN -> [SKIP][176] ([Intel XE#584] / [Intel XE#7369]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-8/igt@xe_gt_freq@freq_suspend.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][177] ([Intel XE#2229])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-lnl:          NOTRUN -> [SKIP][178] ([Intel XE#2833])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html
    - shard-bmg:          NOTRUN -> [SKIP][179] ([Intel XE#2833])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
    - shard-bmg:          NOTRUN -> [SKIP][180] ([Intel XE#6964]) +2 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html

  * igt@xe_page_reclaim@prl-max-entries:
    - shard-lnl:          NOTRUN -> [SKIP][181] ([Intel XE#7793])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@xe_page_reclaim@prl-max-entries.html
    - shard-bmg:          NOTRUN -> [SKIP][182] ([Intel XE#7793])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_page_reclaim@prl-max-entries.html

  * igt@xe_peer2peer@write:
    - shard-bmg:          NOTRUN -> [SKIP][183] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@xe_peer2peer@write.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][184] ([Intel XE#2284] / [Intel XE#7370])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pxp@pxp-stale-queue-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][185] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_pxp@pxp-stale-queue-post-suspend.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-bmg:          NOTRUN -> [SKIP][186] ([Intel XE#944]) +2 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_query@multigpu-query-invalid-extension.html
    - shard-lnl:          NOTRUN -> [SKIP][187] ([Intel XE#944])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][188] ([Intel XE#8477]) +1 other test incomplete
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled.html

  * igt@xe_sriov_scheduling@equal-throughput-normal-priority:
    - shard-lnl:          NOTRUN -> [SKIP][189] ([Intel XE#8339])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html

  * igt@xe_survivability@runtime-survivability:
    - shard-bmg:          [PASS][190] -> [DMESG-WARN][191] ([Intel XE#6627] / [Intel XE#7419])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@xe_survivability@runtime-survivability.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_survivability@runtime-survivability.html

  
#### Possible fixes ####

  * igt@fbdev@write:
    - shard-bmg:          [SKIP][192] ([Intel XE#2134]) -> [PASS][193]
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@fbdev@write.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@fbdev@write.html

  * igt@kms_bw@connected-linear-tiling-1-displays-target-1920x1080p:
    - shard-bmg:          [FAIL][194] -> [PASS][195] +1 other test pass
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-target-1920x1080p.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_bw@connected-linear-tiling-1-displays-target-1920x1080p.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [TIMEOUT][196] ([Intel XE#8451] / [Intel XE#8479]) -> [PASS][197] +1 other test pass
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][198] ([Intel XE#7571]) -> [PASS][199]
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
    - shard-bmg:          [INCOMPLETE][200] ([Intel XE#8151] / [Intel XE#8479]) -> [PASS][201] +1 other test pass
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-3/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-lnl:          [INCOMPLETE][202] ([Intel XE#8479] / [Intel XE#8488]) -> [PASS][203]
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-5/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-7/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html
    - shard-bmg:          [CRASH][204] ([Intel XE#8461]) -> [PASS][205]
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-bmg:          [FAIL][206] ([Intel XE#3321]) -> [PASS][207] +1 other test pass
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [FAIL][208] ([Intel XE#301]) -> [PASS][209] +1 other test pass
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@modeset-vs-vblank-race-interruptible@b-edp1:
    - shard-lnl:          [FAIL][210] ([Intel XE#3098]) -> [PASS][211] +1 other test pass
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-5/igt@kms_flip@modeset-vs-vblank-race-interruptible@b-edp1.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@kms_flip@modeset-vs-vblank-race-interruptible@b-edp1.html

  * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][212] ([Intel XE#8441] / [Intel XE#8480]) -> [PASS][213] +8 other tests pass
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-pgflip-blt.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][214] ([Intel XE#1503]) -> [PASS][215]
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_hdr@invalid-hdr.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
    - shard-bmg:          [INCOMPLETE][216] ([Intel XE#1035] / [Intel XE#8479]) -> [PASS][217]
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
    - shard-bmg:          [CRASH][218] ([Intel XE#8458]) -> [PASS][219]
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
    - shard-bmg:          [INCOMPLETE][220] ([Intel XE#8459]) -> [PASS][221]
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
    - shard-bmg:          [INCOMPLETE][222] ([Intel XE#8459] / [Intel XE#8479]) -> [PASS][223] +3 other tests pass
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html

  * igt@kms_pm_rpm@modeset-stress-extra-wait:
    - shard-bmg:          [SKIP][224] -> [PASS][225]
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_pm_rpm@modeset-stress-extra-wait.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_pm_rpm@modeset-stress-extra-wait.html

  * igt@xe_exec_basic@many-execqueues-null-defer-bind:
    - shard-bmg:          [SKIP][226] ([Intel XE#8480]) -> [PASS][227] +146 other tests pass
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_basic@many-execqueues-null-defer-bind.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_exec_basic@many-execqueues-null-defer-bind.html

  * igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault:
    - shard-lnl:          [ABORT][228] ([Intel XE#8007]) -> [PASS][229]
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-6/igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-8/igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault.html

  * igt@xe_exec_store@long-shader-bb-check@gt0-drm_xe_engine_class_render0-bb-system-target-system:
    - shard-bmg:          [INCOMPLETE][230] ([Intel XE#8479]) -> [PASS][231] +3 other tests pass
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_store@long-shader-bb-check@gt0-drm_xe_engine_class_render0-bb-system-target-system.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@xe_exec_store@long-shader-bb-check@gt0-drm_xe_engine_class_render0-bb-system-target-system.html

  * igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch-madvise:
    - shard-lnl:          [INCOMPLETE][232] ([Intel XE#8479]) -> [PASS][233]
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-4/igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch-madvise.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-4/igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch-madvise.html

  * igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge:
    - shard-bmg:          [SKIP][234] ([Intel XE#8440] / [Intel XE#8480]) -> [PASS][235] +22 other tests pass
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-new-race-nomemset:
    - shard-bmg:          [FAIL][236] ([Intel XE#8479]) -> [PASS][237] +3 other tests pass
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@xe_exec_system_allocator@process-many-large-execqueues-new-race-nomemset.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-execqueues-new-race-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-free-madvise:
    - shard-bmg:          [TIMEOUT][238] ([Intel XE#8447] / [Intel XE#8479]) -> [PASS][239]
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-free-madvise.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-free-madvise.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-prefetch:
    - shard-bmg:          [INCOMPLETE][240] ([Intel XE#8159] / [Intel XE#8479]) -> [PASS][241] +34 other tests pass
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-prefetch.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-prefetch.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset:
    - shard-bmg:          [TIMEOUT][242] ([Intel XE#8356] / [Intel XE#8447]) -> [PASS][243]
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-madvise:
    - shard-lnl:          [TIMEOUT][244] ([Intel XE#8447] / [Intel XE#8479]) -> [PASS][245]
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-madvise.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-madvise.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-fork-read-after:
    - shard-bmg:          [INCOMPLETE][246] ([Intel XE#8159] / [Intel XE#8437] / [Intel XE#8479]) -> [PASS][247] +3 other tests pass
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-fork-read-after.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-fork-read-after.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early:
    - shard-bmg:          [CRASH][248] ([Intel XE#8448]) -> [PASS][249]
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
    - shard-bmg:          [INCOMPLETE][250] ([Intel XE#8479] / [Intel XE#8486]) -> [PASS][251]
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html

  * igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer:
    - shard-bmg:          [TIMEOUT][252] ([Intel XE#8462] / [Intel XE#8479]) -> [PASS][253]
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-10/igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer.html

  
#### Warnings ####

  * igt@kms_async_flips@basic-modeset-with-all-modifiers-formats:
    - shard-bmg:          [INCOMPLETE][254] ([Intel XE#8437] / [Intel XE#8479]) -> [TIMEOUT][255] ([Intel XE#8479])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@kms_async_flips@basic-modeset-with-all-modifiers-formats.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_async_flips@basic-modeset-with-all-modifiers-formats.html

  * igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-dp-2-4-rc-ccs-rgb565:
    - shard-bmg:          [INCOMPLETE][256] ([Intel XE#8479]) -> [TIMEOUT][257] ([Intel XE#8479])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-dp-2-4-rc-ccs-rgb565.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-dp-2-4-rc-ccs-rgb565.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          [SKIP][258] ([Intel XE#3658] / [Intel XE#7360]) -> [INCOMPLETE][259] ([Intel XE#5643] / [Intel XE#8479])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-bmg:          [INCOMPLETE][260] ([Intel XE#5643] / [Intel XE#8479]) -> [SKIP][261] ([Intel XE#8440] / [Intel XE#8480])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
    - shard-lnl:          [INCOMPLETE][262] ([Intel XE#5643] / [Intel XE#8479]) -> [TIMEOUT][263] ([Intel XE#8446] / [Intel XE#8479])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          [SKIP][264] ([Intel XE#8441] / [Intel XE#8480]) -> [TIMEOUT][265] ([Intel XE#8446] / [Intel XE#8479])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-bmg:          [INCOMPLETE][266] ([Intel XE#5643] / [Intel XE#8479]) -> [TIMEOUT][267] ([Intel XE#8446] / [Intel XE#8479]) +2 other tests timeout
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
    - shard-lnl:          [INCOMPLETE][268] ([Intel XE#5643]) -> [INCOMPLETE][269] ([Intel XE#5643] / [Intel XE#8479])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          [TIMEOUT][270] ([Intel XE#8479]) -> [TIMEOUT][271] ([Intel XE#8446] / [Intel XE#8479]) +1 other test timeout
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          [INCOMPLETE][272] ([Intel XE#5643] / [Intel XE#8479]) -> [TIMEOUT][273] ([Intel XE#8446])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-bmg:          [SKIP][274] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][275] ([Intel XE#2327])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_big_fb@linear-8bpp-rotate-90.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][276] ([Intel XE#8441] / [Intel XE#8480]) -> [INCOMPLETE][277] ([Intel XE#5643] / [Intel XE#8479]) +1 other test incomplete
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [TIMEOUT][278] ([Intel XE#8446] / [Intel XE#8479]) -> [TIMEOUT][279] ([Intel XE#8479]) +1 other test timeout
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          [TIMEOUT][280] ([Intel XE#8446] / [Intel XE#8479]) -> [INCOMPLETE][281] ([Intel XE#5643] / [Intel XE#8479])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          [SKIP][282] ([Intel XE#2328] / [Intel XE#7367]) -> [SKIP][283] ([Intel XE#8440] / [Intel XE#8480])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][284] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][285] ([Intel XE#1124]) +1 other test skip
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-lnl:          [INCOMPLETE][286] ([Intel XE#5643] / [Intel XE#8479]) -> [SKIP][287] ([Intel XE#1124]) +2 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          [TIMEOUT][288] ([Intel XE#8446]) -> [SKIP][289] ([Intel XE#1124])
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-lnl:          [SKIP][290] ([Intel XE#1124]) -> [TIMEOUT][291] ([Intel XE#8446])
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          [SKIP][292] ([Intel XE#1124]) -> [INCOMPLETE][293] ([Intel XE#5643] / [Intel XE#8479]) +2 other tests incomplete
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p:
    - shard-bmg:          [CRASH][294] ([Intel XE#8449]) -> [INCOMPLETE][295] ([Intel XE#8479])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p:
    - shard-bmg:          [SKIP][296] ([Intel XE#8480]) -> [FAIL][297] ([Intel XE#8489])
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
    - shard-bmg:          [SKIP][298] ([Intel XE#7679]) -> [INCOMPLETE][299] ([Intel XE#8479])
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
    - shard-bmg:          [SKIP][300] ([Intel XE#8480]) -> [INCOMPLETE][301] ([Intel XE#8479]) +1 other test incomplete
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-target-3840x2160p:
    - shard-bmg:          [SKIP][302] ([Intel XE#367]) -> [SKIP][303] ([Intel XE#8440] / [Intel XE#8480])
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html

  * igt@kms_bw@linear-tiling-3-displays-target-3840x2160p:
    - shard-bmg:          [SKIP][304] ([Intel XE#367]) -> [INCOMPLETE][305] ([Intel XE#8479]) +1 other test incomplete
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-target-1920x1080p:
    - shard-bmg:          [TIMEOUT][306] ([Intel XE#8469] / [Intel XE#8479]) -> [SKIP][307] ([Intel XE#367])
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-target-1920x1080p.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-target-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-target-2160x1440p:
    - shard-bmg:          [SKIP][308] ([Intel XE#367]) -> [TIMEOUT][309] ([Intel XE#8469] / [Intel XE#8479])
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_bw@linear-tiling-4-displays-target-2160x1440p.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-target-2160x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-target-3840x2160p:
    - shard-bmg:          [INCOMPLETE][310] ([Intel XE#8479]) -> [SKIP][311] ([Intel XE#367])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-target-3840x2160p.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-target-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
    - shard-bmg:          [SKIP][312] ([Intel XE#2887]) -> [SKIP][313] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][314] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][315] ([Intel XE#2887]) +2 other tests skip
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][316] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][317] ([Intel XE#2652])
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
    - shard-lnl:          [SKIP][318] ([Intel XE#2887]) -> [INCOMPLETE][319] ([Intel XE#8437] / [Intel XE#8479])
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          [SKIP][320] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][321] ([Intel XE#3432])
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          [SKIP][322] ([Intel XE#2724] / [Intel XE#7449]) -> [SKIP][323] ([Intel XE#8440] / [Intel XE#8480])
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_cdclk@mode-transition.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          [SKIP][324] ([Intel XE#2252]) -> [SKIP][325] ([Intel XE#8440] / [Intel XE#8480])
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
    - shard-bmg:          [SKIP][326] ([Intel XE#8480]) -> [SKIP][327] ([Intel XE#2252]) +1 other test skip
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html

  * igt@kms_content_protection@atomic-dpms-hdcp14:
    - shard-bmg:          [FAIL][328] ([Intel XE#3304] / [Intel XE#7374]) -> [SKIP][329] ([Intel XE#8440] / [Intel XE#8480])
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@kms_content_protection@atomic-dpms-hdcp14.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html

  * igt@kms_cursor_crc@cursor-rapid-movement-128x42:
    - shard-bmg:          [SKIP][330] ([Intel XE#8480]) -> [SKIP][331] ([Intel XE#2320])
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][332] ([Intel XE#2286] / [Intel XE#6035]) -> [INCOMPLETE][333] ([Intel XE#8151] / [Intel XE#8479])
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          [INCOMPLETE][334] ([Intel XE#8151] / [Intel XE#8479]) -> [SKIP][335] ([Intel XE#8440] / [Intel XE#8480])
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-bmg:          [SKIP][336] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][337] ([Intel XE#4354] / [Intel XE#7386])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_dp_link_training@uhbr-mst.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dsc@dsc-with-bpc-bigjoiner:
    - shard-bmg:          [SKIP][338] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][339] ([Intel XE#8265])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_dsc@dsc-with-bpc-bigjoiner.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_dsc@dsc-with-bpc-bigjoiner.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          [SKIP][340] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][341] ([Intel XE#4156] / [Intel XE#7425])
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_fbcon_fbt@fbc-suspend.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          [SKIP][342] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][343] ([Intel XE#2373] / [Intel XE#7448])
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_feature_discovery@display-3x.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-lnl:          [INCOMPLETE][344] ([Intel XE#2597] / [Intel XE#8479] / [Intel XE#8488]) -> [SKIP][345] ([Intel XE#1421])
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-lnl:          [INCOMPLETE][346] ([Intel XE#8479] / [Intel XE#8488]) -> [SKIP][347] ([Intel XE#1421])
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [INCOMPLETE][348] ([Intel XE#8155] / [Intel XE#8479]) -> [CRASH][349] ([Intel XE#8461])
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
    - shard-lnl:          [INCOMPLETE][350] ([Intel XE#8479]) -> [SKIP][351] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385])
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
    - shard-lnl:          [INCOMPLETE][352] ([Intel XE#8479]) -> [SKIP][353] ([Intel XE#1397] / [Intel XE#7385])
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/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-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][354] ([Intel XE#7178] / [Intel XE#7351]) -> [INCOMPLETE][355] ([Intel XE#8479])
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
    - shard-lnl:          [SKIP][356] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) -> [INCOMPLETE][357] ([Intel XE#8479]) +1 other test incomplete
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          [SKIP][358] ([Intel XE#1397] / [Intel XE#7385]) -> [INCOMPLETE][359] ([Intel XE#8479]) +1 other test incomplete
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling:
    - shard-bmg:          [SKIP][360] ([Intel XE#8441] / [Intel XE#8480]) -> [TIMEOUT][361] ([Intel XE#8467] / [Intel XE#8479])
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][362] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][363] ([Intel XE#2311]) +19 other tests skip
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
    - shard-bmg:          [SKIP][364] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][365] ([Intel XE#7061] / [Intel XE#7356])
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][366] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][367] ([Intel XE#4141])
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][368] ([Intel XE#4141]) -> [SKIP][369] ([Intel XE#8440] / [Intel XE#8480]) +3 other tests skip
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][370] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][371] ([Intel XE#4141]) +1 other test skip
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [INCOMPLETE][372] ([Intel XE#8368] / [Intel XE#8479]) -> [SKIP][373] ([Intel XE#2311]) +1 other test skip
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-bmg:          [SKIP][374] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][375] ([Intel XE#2352] / [Intel XE#7399])
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][376] ([Intel XE#2311]) -> [SKIP][377] ([Intel XE#8440] / [Intel XE#8480]) +7 other tests skip
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-pri-indfb-draw-render.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][378] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][379] ([Intel XE#2311])
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-shrfb-plflip-blt.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][380] ([Intel XE#8441] / [Intel XE#8480]) -> [INCOMPLETE][381] ([Intel XE#8368] / [Intel XE#8479])
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-render.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [INCOMPLETE][382] ([Intel XE#8368] / [Intel XE#8479]) -> [TIMEOUT][383] ([Intel XE#8466] / [Intel XE#8479]) +2 other tests timeout
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [TIMEOUT][384] ([Intel XE#8466] / [Intel XE#8479]) -> [TIMEOUT][385] ([Intel XE#8479])
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-render:
    - shard-bmg:          [TIMEOUT][386] ([Intel XE#8479]) -> [INCOMPLETE][387] ([Intel XE#8368] / [Intel XE#8479])
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-render.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][388] ([Intel XE#8441] / [Intel XE#8480]) -> [TIMEOUT][389] ([Intel XE#8466] / [Intel XE#8479])
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-wc.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [TIMEOUT][390] ([Intel XE#8479]) -> [TIMEOUT][391] ([Intel XE#8466] / [Intel XE#8479])
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-render.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][392] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][393] ([Intel XE#2313]) +1 other test skip
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-render:
    - shard-bmg:          [INCOMPLETE][394] ([Intel XE#8368] / [Intel XE#8479]) -> [SKIP][395] ([Intel XE#2313])
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-render.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][396] ([Intel XE#2313]) -> [INCOMPLETE][397] ([Intel XE#8368] / [Intel XE#8479])
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][398] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][399] ([Intel XE#2313]) +11 other tests skip
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][400] ([Intel XE#2313]) -> [SKIP][401] ([Intel XE#8440] / [Intel XE#8480]) +9 other tests skip
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt.html
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc:
    - shard-bmg:          [SKIP][402] ([Intel XE#7061]) -> [SKIP][403] ([Intel XE#8440] / [Intel XE#8480])
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render:
    - shard-bmg:          [SKIP][404] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][405] ([Intel XE#8440] / [Intel XE#8480])
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          [SKIP][406] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][407] ([Intel XE#6911] / [Intel XE#7378])
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_joiner@basic-ultra-joiner.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
    - shard-bmg:          [CRASH][408] ([Intel XE#8460]) -> [TIMEOUT][409] ([Intel XE#8465])
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
    - shard-bmg:          [INCOMPLETE][410] ([Intel XE#1035] / [Intel XE#8479]) -> [SKIP][411] ([Intel XE#7283])
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
    - shard-bmg:          [SKIP][412] ([Intel XE#7283]) -> [INCOMPLETE][413] ([Intel XE#1035] / [Intel XE#8479]) +2 other tests incomplete
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-linear-modifier-source-clamping:
    - shard-bmg:          [SKIP][414] ([Intel XE#8480]) -> [SKIP][415] ([Intel XE#8440] / [Intel XE#8480]) +13 other tests skip
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_plane@pixel-format-linear-modifier-source-clamping.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_plane@pixel-format-linear-modifier-source-clamping.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-bmg:          [INCOMPLETE][416] ([Intel XE#8459] / [Intel XE#8479]) -> [SKIP][417] ([Intel XE#8440] / [Intel XE#8480])
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          [WARN][418] -> [SKIP][419] ([Intel XE#2763] / [Intel XE#6886])
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
    - shard-bmg:          [CRASH][420] ([Intel XE#8458]) -> [SKIP][421] ([Intel XE#2763] / [Intel XE#6886])
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          [SKIP][422] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][423] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-bmg:          [SKIP][424] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][425] ([Intel XE#8395])
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-lnl:          [SKIP][426] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [INCOMPLETE][427] ([Intel XE#8479])
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-2/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-fully-sf@pipe-a-edp-1:
    - shard-lnl:          [SKIP][428] ([Intel XE#4608]) -> [INCOMPLETE][429] ([Intel XE#8479])
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          [SKIP][430] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][431] ([Intel XE#1489]) +1 other test skip
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-bmg:          [SKIP][432] ([Intel XE#1489]) -> [SKIP][433] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-bmg:          [SKIP][434] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][435] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_psr@fbc-psr-sprite-render.html
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@psr-no-drrs:
    - shard-bmg:          [SKIP][436] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][437] ([Intel XE#2234] / [Intel XE#2850])
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_psr@psr-no-drrs.html
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-3/igt@kms_psr@psr-no-drrs.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          [SKIP][438] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][439] ([Intel XE#7795])
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_sharpness_filter@filter-basic:
    - shard-bmg:          [SKIP][440] ([Intel XE#6503]) -> [SKIP][441] ([Intel XE#8440] / [Intel XE#8480])
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_sharpness_filter@filter-basic.html
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@kms_sharpness_filter@filter-basic.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][442] ([Intel XE#8480]) -> [SKIP][443] ([Intel XE#1499])
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@kms_vrr@flip-suspend.html
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@flipline:
    - shard-bmg:          [SKIP][444] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][445] ([Intel XE#1499])
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@kms_vrr@flipline.html
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@kms_vrr@flipline.html

  * igt@xe_compute@eu-busy-10s:
    - shard-bmg:          [SKIP][446] ([Intel XE#6599]) -> [SKIP][447] ([Intel XE#8440] / [Intel XE#8480])
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-5/igt@xe_compute@eu-busy-10s.html
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@xe_compute@eu-busy-10s.html

  * igt@xe_eudebug@basic-vm-bind-extended:
    - shard-bmg:          [SKIP][448] ([Intel XE#8480]) -> [SKIP][449] ([Intel XE#7636]) +3 other tests skip
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_eudebug@basic-vm-bind-extended.html
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_eudebug@basic-vm-bind-extended.html

  * igt@xe_eudebug@multiple-sessions:
    - shard-bmg:          [SKIP][450] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][451] ([Intel XE#7636])
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@xe_eudebug@multiple-sessions.html
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_eudebug@multiple-sessions.html

  * igt@xe_eudebug_online@pagefault-write:
    - shard-bmg:          [SKIP][452] ([Intel XE#7636]) -> [SKIP][453] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@xe_eudebug_online@pagefault-write.html
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@xe_eudebug_online@pagefault-write.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
    - shard-bmg:          [SKIP][454] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][455] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          [SKIP][456] ([Intel XE#2322] / [Intel XE#7372]) -> [INCOMPLETE][457] ([Intel XE#8439] / [Intel XE#8479]) +3 other tests incomplete
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
    - shard-bmg:          [TIMEOUT][458] -> [INCOMPLETE][459] ([Intel XE#8439] / [Intel XE#8479])
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
    - shard-bmg:          [INCOMPLETE][460] ([Intel XE#8439] / [Intel XE#8479]) -> [SKIP][461] ([Intel XE#2322] / [Intel XE#7372])
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - shard-bmg:          [SKIP][462] ([Intel XE#8480]) -> [SKIP][463] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault:
    - shard-bmg:          [INCOMPLETE][464] ([Intel XE#8479]) -> [SKIP][465] ([Intel XE#8374]) +1 other test skip
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault.html
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr:
    - shard-bmg:          [SKIP][466] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][467] ([Intel XE#8374])
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@xe_exec_fault_mode@many-multi-queue-userptr.html
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@xe_exec_fault_mode@many-multi-queue-userptr.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
    - shard-bmg:          [SKIP][468] ([Intel XE#8480]) -> [SKIP][469] ([Intel XE#8374]) +2 other tests skip
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-7/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-prefetch:
    - shard-bmg:          [SKIP][470] ([Intel XE#8374]) -> [SKIP][471] ([Intel XE#8440] / [Intel XE#8480])
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-4/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-prefetch.html
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-prefetch.html

  * igt@xe_exec_multi_queue@few-execs-close-fd:
    - shard-bmg:          [SKIP][472] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][473] ([Intel XE#8364])
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@xe_exec_multi_queue@few-execs-close-fd.html
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-close-fd.html

  * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
    - shard-bmg:          [SKIP][474] ([Intel XE#8364]) -> [SKIP][475] ([Intel XE#8440] / [Intel XE#8480]) +2 other tests skip
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-8/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem:
    - shard-bmg:          [SKIP][476] ([Intel XE#8480]) -> [SKIP][477] ([Intel XE#8364]) +6 other tests skip
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html

  * igt@xe_exec_reset@multi-queue-gt-reset:
    - shard-bmg:          [SKIP][478] ([Intel XE#8480]) -> [SKIP][479] ([Intel XE#8369]) +1 other test skip
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_reset@multi-queue-gt-reset.html
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@xe_exec_reset@multi-queue-gt-reset.html

  * igt@xe_exec_system_allocator@process-many-execqueues-malloc-bo-unmap-nomemset:
    - shard-bmg:          [FAIL][480] ([Intel XE#8479]) -> [INCOMPLETE][481] ([Intel XE#8159] / [Intel XE#8479]) +1 other test incomplete
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-2/igt@xe_exec_system_allocator@process-many-execqueues-malloc-bo-unmap-nomemset.html
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-10/igt@xe_exec_system_allocator@process-many-execqueues-malloc-bo-unmap-nomemset.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-shared-remap:
    - shard-bmg:          [SKIP][482] ([Intel XE#8440] / [Intel XE#8480]) -> [FAIL][483] ([Intel XE#8479])
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-7/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-shared-remap.html
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-shared-remap.html

  * igt@xe_exec_system_allocator@process-many-stride-mmap-shared-remap-dontunmap-eocheck:
    - shard-bmg:          [SKIP][484] ([Intel XE#8480]) -> [FAIL][485] ([Intel XE#8479])
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_system_allocator@process-many-stride-mmap-shared-remap-dontunmap-eocheck.html
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-8/igt@xe_exec_system_allocator@process-many-stride-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-madvise:
    - shard-lnl:          [TIMEOUT][486] ([Intel XE#8479]) -> [TIMEOUT][487] ([Intel XE#8447] / [Intel XE#8479])
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-madvise.html
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-madvise.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-race-nomemset:
    - shard-bmg:          [SKIP][488] ([Intel XE#8480]) -> [INCOMPLETE][489] ([Intel XE#8159] / [Intel XE#8479]) +1 other test incomplete
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-race-nomemset.html
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-race-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-race-nomemset:
    - shard-bmg:          [INCOMPLETE][490] ([Intel XE#8159] / [Intel XE#8479]) -> [SKIP][491] ([Intel XE#8440] / [Intel XE#8480])
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-race-nomemset.html
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-race-nomemset.html

  * igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
    - shard-bmg:          [SKIP][492] ([Intel XE#8480]) -> [SKIP][493] ([Intel XE#8378]) +1 other test skip
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html

  * igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate:
    - shard-bmg:          [INCOMPLETE][494] ([Intel XE#8366] / [Intel XE#8479]) -> [SKIP][495] ([Intel XE#8378])
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate.html
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
    - shard-bmg:          [CRASH][496] ([Intel XE#8448]) -> [INCOMPLETE][497] ([Intel XE#8479] / [Intel XE#8486])
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html

  * igt@xe_page_reclaim@pde-vs-pd:
    - shard-bmg:          [SKIP][498] ([Intel XE#8480]) -> [SKIP][499] ([Intel XE#7793])
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_page_reclaim@pde-vs-pd.html
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-1/igt@xe_page_reclaim@pde-vs-pd.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-bmg:          [SKIP][500] ([Intel XE#8480]) -> [SKIP][501] ([Intel XE#944])
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_query@multigpu-query-hwconfig.html
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-4/igt@xe_query@multigpu-query-hwconfig.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-bmg:          [SKIP][502] ([Intel XE#944]) -> [SKIP][503] ([Intel XE#8440] / [Intel XE#8480])
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8987/shard-bmg-9/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/shard-bmg-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  
  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [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#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#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [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#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
  [Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
  [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [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#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
  [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#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7318
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
  [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
  [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
  [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
  [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
  [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
  [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7457
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
  [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
  [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
  [Intel XE#7928]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7928
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
  [Intel XE#8151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8151
  [Intel XE#8155]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8155
  [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
  [Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
  [Intel XE#8356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8356
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8366
  [Intel XE#8368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8368
  [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
  [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
  [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
  [Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397
  [Intel XE#8437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8437
  [Intel XE#8439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8439
  [Intel XE#8440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8440
  [Intel XE#8441]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8441
  [Intel XE#8445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8445
  [Intel XE#8446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8446
  [Intel XE#8447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8447
  [Intel XE#8448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8448
  [Intel XE#8449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8449
  [Intel XE#8451]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8451
  [Intel XE#8453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8453
  [Intel XE#8458]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8458
  [Intel XE#8459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8459
  [Intel XE#8460]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8460
  [Intel XE#8461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8461
  [Intel XE#8462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8462
  [Intel XE#8465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8465
  [Intel XE#8466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8466
  [Intel XE#8467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8467
  [Intel XE#8469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8469
  [Intel XE#8470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8470
  [Intel XE#8477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8477
  [Intel XE#8479]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8479
  [Intel XE#8480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8480
  [Intel XE#8486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8486
  [Intel XE#8488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8488
  [Intel XE#8489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8489
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


Build changes
-------------

  * IGT: IGT_8987 -> IGTPW_15442
  * Linux: xe-5302-18cd20781ea0de17268c35faf4a2b53b593915c2 -> xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca

  IGTPW_15442: 15442
  IGT_8987: 8987
  xe-5302-18cd20781ea0de17268c35faf4a2b53b593915c2: 18cd20781ea0de17268c35faf4a2b53b593915c2
  xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca: 5fe805765b01f6e3519421039c3ade7cff1074ca

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15442/index.html

[-- Attachment #2: Type: text/html, Size: 178756 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-06-26  5:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-26  3:21 [PATCH i-g-t] tests/amdgpu: Discover amdgpu backlight device dynamically instead of hardcoding amdgpu_bl0 James Lin
2026-06-26  4:12 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-06-26  4:28 ` ✓ i915.CI.BAT: " Patchwork
2026-06-26  5:36 ` [PATCH i-g-t] " Tom Chung
2026-06-26  5:50 ` ✗ 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