* Re: [PATCH i-g-t] lib/igt_sysfs: Multi-Tile support in IGT
2025-01-22 15:00 [PATCH i-g-t] lib/igt_sysfs: Multi-Tile support in IGT nishit.sharma
@ 2025-01-22 15:56 ` Matt Roper
2025-01-22 20:13 ` ✓ i915.CI.BAT: success for " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Matt Roper @ 2025-01-22 15:56 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev, zbigniew.kempczynski
On Wed, Jan 22, 2025 at 03:00:51PM +0000, nishit.sharma@intel.com wrote:
> From: Nishit Sharma <nishit.sharma@intel.com>
>
> Added functionality in xe_sysfs_gt_path() function to get Tile ID
> in multi-tile platforms. Added IGT test tests/intel/xe_multi_tile
> to verify Tile IDs and GT IDs
>
> Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
> ---
> lib/igt_sysfs.c | 3 +-
> tests/intel/xe_multi_tile.c | 109 ++++++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 3 files changed, 112 insertions(+), 1 deletion(-)
> create mode 100644 tests/intel/xe_multi_tile.c
>
> diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
> index 00d5822fd..37f1716e2 100644
> --- a/lib/igt_sysfs.c
> +++ b/lib/igt_sysfs.c
> @@ -234,7 +234,8 @@ char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen)
>
> if (IS_PONTEVECCHIO(intel_get_drm_devid(xe_device)))
> snprintf(path, pathlen, "/sys/dev/char/%d:%d/device/tile%d/gt%d",
> - major(st.st_rdev), minor(st.st_rdev), gt, gt);
> + major(st.st_rdev), minor(st.st_rdev),
> + xe_gt_get_tile_id(xe_device, gt), gt);
> else
> snprintf(path, pathlen, "/sys/dev/char/%d:%d/device/tile0/gt%d",
> major(st.st_rdev), minor(st.st_rdev), gt);
> diff --git a/tests/intel/xe_multi_tile.c b/tests/intel/xe_multi_tile.c
> new file mode 100644
> index 000000000..222da9389
> --- /dev/null
> +++ b/tests/intel/xe_multi_tile.c
> @@ -0,0 +1,109 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2023 Intel Corporation
Typo? We're in 2025 now, not 2023.
> + *
> + * Authors:
> + * Nishit Sharma <nishit.sharma@intel.com>
> + */
> +
> +#include <dirent.h>
> +#include <fcntl.h>
> +#include <sys/types.h>
> +#include <sys/stat.h>
> +#include <unistd.h>
> +
> +#include "igt.h"
> +#include "igt_sysfs.h"
> +#include "xe_drm.h"
> +#include "xe/xe_query.h"
> +
> +/**
> + * TEST: Test to get tile_id by iterating gt on xe
> + * Category: Core
> + * Mega feature: General Core features
> + * Sub-category: mapping tile/s with slices available
What does "with slices" mean? Slices are a different hardware concept
inside the GT that we're not doing anything with here.
Actually, it doesn't seem like this IGT test is actually testing
anything multi-tile related. The first subtest is just printing debug
output and doesn't have any checks (i.e., it can never fail). The
second test doesn't appear to be related to multi-tile since it's just
iterating over GTs, independent of whatever tiles are present in the
system.
It would be more useful if the IGT test was actually checking the
behavior of the UAPI to make sure it's returning sane values. E.g.,
E.g., we could check stuff like:
* all GTs belonging to the same tile must have different types
* we aren't "missing" any tiles (e.g., if the uapi reports GTs
associated with tile0 and tile2, where was tile1?)
* ...etc...*
Matt
> + * Functionality: gt operation
> + */
> +
> +/**
> + * SUBTEST: show-tile
> + * SUBTEST: gt-configuration
> + * Description: Test prints the tile_ids and gt_ids available in GPU
> + * Test category: functionality test
> + *
> + */
> +static void engine_test_defaults(int xe, int engine, const char **property,
> + uint16_t class, int gt)
> +{
> + struct dirent *de;
> + uint64_t property_value;
> + int defaults;
> + DIR *dir;
> +
> + defaults = openat(engine, ".defaults", O_DIRECTORY);
> + igt_require(defaults != -1);
> +
> + dir = fdopendir(engine);
> + while ((de = readdir(dir))) {
> + if (*de->d_name == '.')
> + continue;
> +
> + igt_debug("Checking attr '%s'\n", de->d_name);
> +
> + igt_assert_f(__igt_sysfs_get_u64(defaults, de->d_name, &property_value),
> + "Default value %s is not present!\n", de->d_name);
> +
> + igt_debug("Default property:%s, value:0x%" PRId64 "\n", de->d_name, property_value);
> +
> + igt_assert_f(!igt_sysfs_set(defaults, de->d_name, "garbage"),
> + "write into default value of %s succeeded!\n",
> + de->d_name);
> + }
> + closedir(dir);
> +}
> +
> +igt_main
> +{
> + int fd;
> + struct xe_engine_list_entry *en;
> + struct drm_xe_engine_class_instance *hwe;
> + int gt, tile_id, prev_tile = -1, gt_num;
> +
> + igt_fixture {
> + fd = drm_open_driver(DRIVER_XE);
> + xe_device_get(fd);
> + gt_num = xe_number_gt(fd);
> + }
> +
> + igt_subtest("show-tile") {
> + xe_for_each_gt(fd, gt) {
> + tile_id = xe_gt_get_tile_id(fd, gt);
> + if (prev_tile != tile_id) {
> + igt_info("Tile id: %d\n", tile_id);
> + prev_tile = tile_id;
> + }
> + igt_info("GT id: %d\n", gt);
> + }
> + }
> +
> + igt_subtest_with_dynamic("gt-configuration") {
> + for (gt = 0; gt < gt_num; gt++) {
> + int engines_fd = -1;
> + int gt_fd = -1;
> +
> + gt_fd = xe_sysfs_gt_open(fd, gt);
> + igt_require(gt_fd != -1);
> + engines_fd = openat(gt_fd, "engines", O_RDONLY);
> + igt_require(engines_fd != -1);
> +
> + igt_sysfs_engines(fd, engines_fd, 0, 0, NULL, engine_test_defaults);
> +
> + close(engines_fd);
> + close(gt_fd);
> + }
> + }
> +
> + igt_fixture {
> + drm_close_driver(fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 2724c7a9a..2cc01aa0c 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -292,6 +292,7 @@ intel_xe_progs = [
> 'xe_exec_reset',
> 'xe_exec_sip',
> 'xe_exec_store',
> + 'xe_multi_tile',
> 'xe_exec_threads',
> 'xe_exercise_blt',
> 'xe_fault_injection',
> --
> 2.34.1
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH i-g-t] lib/igt_sysfs: Multi-Tile support in IGT
2025-01-22 15:00 [PATCH i-g-t] lib/igt_sysfs: Multi-Tile support in IGT nishit.sharma
` (2 preceding siblings ...)
2025-01-22 20:13 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-01-23 5:15 ` Zbigniew Kempczyński
2025-01-23 7:59 ` ✗ Xe.CI.Full: failure for " Patchwork
2025-01-23 20:50 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-23 5:15 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev, matthew.d.roper
On Wed, Jan 22, 2025 at 03:00:51PM +0000, nishit.sharma@intel.com wrote:
> From: Nishit Sharma <nishit.sharma@intel.com>
>
> Added functionality in xe_sysfs_gt_path() function to get Tile ID
> in multi-tile platforms. Added IGT test tests/intel/xe_multi_tile
> to verify Tile IDs and GT IDs
>
> Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
> ---
> lib/igt_sysfs.c | 3 +-
> tests/intel/xe_multi_tile.c | 109 ++++++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 3 files changed, 112 insertions(+), 1 deletion(-)
> create mode 100644 tests/intel/xe_multi_tile.c
>
> diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
> index 00d5822fd..37f1716e2 100644
> --- a/lib/igt_sysfs.c
> +++ b/lib/igt_sysfs.c
> @@ -234,7 +234,8 @@ char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen)
>
> if (IS_PONTEVECCHIO(intel_get_drm_devid(xe_device)))
> snprintf(path, pathlen, "/sys/dev/char/%d:%d/device/tile%d/gt%d",
> - major(st.st_rdev), minor(st.st_rdev), gt, gt);
> + major(st.st_rdev), minor(st.st_rdev),
> + xe_gt_get_tile_id(xe_device, gt), gt);
Please split this into a separate patch. Test should be part of another
commit. BTW with xe_gt_get_tile_id() if/else might be replaced by single
snprintf, you don't need to use conditional here. For single tile this
function will return 0 so this code will work regardless platform.
About tests Matt already replied.
--
Zbigniew
> else
> snprintf(path, pathlen, "/sys/dev/char/%d:%d/device/tile0/gt%d",
> major(st.st_rdev), minor(st.st_rdev), gt);
> diff --git a/tests/intel/xe_multi_tile.c b/tests/intel/xe_multi_tile.c
> new file mode 100644
> index 000000000..222da9389
> --- /dev/null
> +++ b/tests/intel/xe_multi_tile.c
> @@ -0,0 +1,109 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2023 Intel Corporation
> + *
> + * Authors:
> + * Nishit Sharma <nishit.sharma@intel.com>
> + */
> +
> +#include <dirent.h>
> +#include <fcntl.h>
> +#include <sys/types.h>
> +#include <sys/stat.h>
> +#include <unistd.h>
> +
> +#include "igt.h"
> +#include "igt_sysfs.h"
> +#include "xe_drm.h"
> +#include "xe/xe_query.h"
> +
> +/**
> + * TEST: Test to get tile_id by iterating gt on xe
> + * Category: Core
> + * Mega feature: General Core features
> + * Sub-category: mapping tile/s with slices available
> + * Functionality: gt operation
> + */
> +
> +/**
> + * SUBTEST: show-tile
> + * SUBTEST: gt-configuration
> + * Description: Test prints the tile_ids and gt_ids available in GPU
> + * Test category: functionality test
> + *
> + */
> +static void engine_test_defaults(int xe, int engine, const char **property,
> + uint16_t class, int gt)
> +{
> + struct dirent *de;
> + uint64_t property_value;
> + int defaults;
> + DIR *dir;
> +
> + defaults = openat(engine, ".defaults", O_DIRECTORY);
> + igt_require(defaults != -1);
> +
> + dir = fdopendir(engine);
> + while ((de = readdir(dir))) {
> + if (*de->d_name == '.')
> + continue;
> +
> + igt_debug("Checking attr '%s'\n", de->d_name);
> +
> + igt_assert_f(__igt_sysfs_get_u64(defaults, de->d_name, &property_value),
> + "Default value %s is not present!\n", de->d_name);
> +
> + igt_debug("Default property:%s, value:0x%" PRId64 "\n", de->d_name, property_value);
> +
> + igt_assert_f(!igt_sysfs_set(defaults, de->d_name, "garbage"),
> + "write into default value of %s succeeded!\n",
> + de->d_name);
> + }
> + closedir(dir);
> +}
> +
> +igt_main
> +{
> + int fd;
> + struct xe_engine_list_entry *en;
> + struct drm_xe_engine_class_instance *hwe;
> + int gt, tile_id, prev_tile = -1, gt_num;
> +
> + igt_fixture {
> + fd = drm_open_driver(DRIVER_XE);
> + xe_device_get(fd);
> + gt_num = xe_number_gt(fd);
> + }
> +
> + igt_subtest("show-tile") {
> + xe_for_each_gt(fd, gt) {
> + tile_id = xe_gt_get_tile_id(fd, gt);
> + if (prev_tile != tile_id) {
> + igt_info("Tile id: %d\n", tile_id);
> + prev_tile = tile_id;
> + }
> + igt_info("GT id: %d\n", gt);
> + }
> + }
> +
> + igt_subtest_with_dynamic("gt-configuration") {
> + for (gt = 0; gt < gt_num; gt++) {
> + int engines_fd = -1;
> + int gt_fd = -1;
> +
> + gt_fd = xe_sysfs_gt_open(fd, gt);
> + igt_require(gt_fd != -1);
> + engines_fd = openat(gt_fd, "engines", O_RDONLY);
> + igt_require(engines_fd != -1);
> +
> + igt_sysfs_engines(fd, engines_fd, 0, 0, NULL, engine_test_defaults);
> +
> + close(engines_fd);
> + close(gt_fd);
> + }
> + }
> +
> + igt_fixture {
> + drm_close_driver(fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 2724c7a9a..2cc01aa0c 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -292,6 +292,7 @@ intel_xe_progs = [
> 'xe_exec_reset',
> 'xe_exec_sip',
> 'xe_exec_store',
> + 'xe_multi_tile',
> 'xe_exec_threads',
> 'xe_exercise_blt',
> 'xe_fault_injection',
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 7+ messages in thread* ✗ Xe.CI.Full: failure for lib/igt_sysfs: Multi-Tile support in IGT
2025-01-22 15:00 [PATCH i-g-t] lib/igt_sysfs: Multi-Tile support in IGT nishit.sharma
` (3 preceding siblings ...)
2025-01-23 5:15 ` [PATCH i-g-t] " Zbigniew Kempczyński
@ 2025-01-23 7:59 ` Patchwork
2025-01-23 20:50 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-01-23 7:59 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 104449 bytes --]
== Series Details ==
Series: lib/igt_sysfs: Multi-Tile support in IGT
URL : https://patchwork.freedesktop.org/series/143855/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8206_full -> XEIGTPW_12479_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12479_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12479_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12479_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_lowres@tiling-none@pipe-b-dp-2:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_plane_lowres@tiling-none@pipe-b-dp-2.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_plane_lowres@tiling-none@pipe-b-dp-2.html
* igt@kms_vblank@wait-idle-hang@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][3] +13 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@kms_vblank@wait-idle-hang@pipe-d-dp-4.html
* igt@xe_vm@large-split-binds-536870912:
- shard-dg2-set2: [PASS][4] -> [DMESG-WARN][5] +59 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_vm@large-split-binds-536870912.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@xe_vm@large-split-binds-536870912.html
New tests
---------
New tests have been introduced between XEIGT_8206_full and XEIGTPW_12479_full:
### New IGT tests (7) ###
* igt@xe_multi_tile@gt-configuration:
- Statuses : 2 pass(s)
- Exec time: [0.00, 0.01] s
* igt@xe_multi_tile@gt-configuration@bcs:
- Statuses : 2 pass(s)
- Exec time: [0.0, 0.00] s
* igt@xe_multi_tile@gt-configuration@ccs:
- Statuses : 2 pass(s)
- Exec time: [0.0, 0.00] s
* igt@xe_multi_tile@gt-configuration@rcs:
- Statuses : 2 pass(s)
- Exec time: [0.0, 0.00] s
* igt@xe_multi_tile@gt-configuration@vcs:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@xe_multi_tile@gt-configuration@vecs:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@xe_multi_tile@show-tile:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_12479_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-modifier-no-flag:
- shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_addfb_basic@addfb25-modifier-no-flag.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_addfb_basic@addfb25-modifier-no-flag.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#3157])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][9] ([Intel XE#1033]) +16 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#664])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-2/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_atomic@plane-immutable-zpos:
- shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#3007]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_atomic@plane-immutable-zpos.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_atomic@plane-immutable-zpos.html
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_atomic@plane-immutable-zpos.html
* igt@kms_atomic_interruptible@legacy-dpms:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3007])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_atomic_interruptible@legacy-dpms.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-bmg: NOTRUN -> [DMESG-WARN][16] ([Intel XE#1033]) +1 other test dmesg-warn
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-5/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-8/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2328])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#2136]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#367]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2191])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2191]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +8 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +6 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#3442])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3432])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +125 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#314]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1152]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-7/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#306])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-8/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2252])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#373]) +6 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#373]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-7/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_color@degamma:
- shard-dg2-set2: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#1033]) +31 other tests dmesg-warn
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_color@degamma.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_color@degamma.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2341])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#307])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#3304])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1468])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-8/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +1 other test fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#1178]) +2 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#308]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2320])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1424])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-1/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#309])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#323])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2286])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-blt:
- shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_draw_crc@draw-method-blt.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_draw_crc@draw-method-blt.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2244])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#776])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1137])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1421]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-7/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#301]) +6 other tests fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][59] -> [FAIL][60] ([Intel XE#3321]) +2 other tests fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [PASS][61] -> [FAIL][62] ([Intel XE#301]) +2 other tests fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#3321]) +1 other test fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][64] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
- shard-bmg: [PASS][65] -> [INCOMPLETE][66] ([Intel XE#2597])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check:
- shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#2882]) +1 other test fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@plain-flip-ts-check.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#886]) +3 other tests fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][71] -> [SKIP][72] ([Intel XE#2136]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2293]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397] / [Intel XE#1745])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1397])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1401]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#352]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2311]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#651]) +35 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#651]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#2136] / [Intel XE#2351])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#4141])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#656]) +29 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2313]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#653]) +30 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#605])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-3/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#455]) +17 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1503])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#346])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@kms_joiner@basic-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2501])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: [PASS][94] -> [INCOMPLETE][95] ([Intel XE#4091])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_plane_lowres@tiling-none.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2763]) +8 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2763]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#870])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: NOTRUN -> [FAIL][100] ([Intel XE#718])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][101] ([Intel XE#2029])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [PASS][102] -> [SKIP][103] ([Intel XE#2446])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_pm_rpm@modeset-stress-extra-wait.html
- shard-dg2-set2: [PASS][104] -> [SKIP][105] ([Intel XE#2446]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1489]) +10 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#1489]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2893]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1122]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1406]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-7/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#3414]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#3414] / [Intel XE#3904])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][115] ([Intel XE#1729])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#330])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#899]) +1 other test fail
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#1499])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_vrr@flipline.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1447])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-5/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2905]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-5/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#3889])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#3889])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug@basic-vm-bind-ufence-sigint-client:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3889])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-2/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2905]) +9 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2905]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html
* igt@xe_evict@evict-small-external:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#688])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-5/igt@xe_evict@evict-small-external.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2322]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-dg2-set2: [PASS][129] -> [SKIP][130] ([Intel XE#1392]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1392]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-dg2-set2: [PASS][132] -> [INCOMPLETE][133] ([Intel XE#2594])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-userptr.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_compute_mode@many-bindexecqueue:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1130]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_exec_compute_mode@many-bindexecqueue.html
* igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate:
- shard-bmg: [PASS][135] -> [SKIP][136] ([Intel XE#1130]) +21 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#288]) +18 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2360])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_queue_property@invalid-property:
- shard-dg2-set2: [PASS][139] -> [SKIP][140] ([Intel XE#1130]) +15 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_exec_queue_property@invalid-property.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_exec_queue_property@invalid-property.html
* igt@xe_exec_threads@threads-hang-userptr-invalidate:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][141] ([Intel XE#3876])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@xe_exec_threads@threads-hang-userptr-invalidate.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166]) -> ([SKIP][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190]) ([Intel XE#378])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@xe_module_load@load.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#977])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-7/igt@xe_pat@pat-index-xelp.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][193] ([Intel XE#1173])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#2284] / [Intel XE#366])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-basic:
- shard-dg2-set2: [PASS][195] -> [ABORT][196] ([Intel XE#1358] / [Intel XE#1794])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_pm@s2idle-basic.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [PASS][197] -> [DMESG-WARN][198] ([Intel XE#1033] / [Intel XE#1616])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-prefetch.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [PASS][199] -> [DMESG-WARN][200] ([Intel XE#1033] / [Intel XE#569]) +1 other test dmesg-warn
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_pm@s3-mocs.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@xe_pm@s3-mocs.html
- shard-dg2-set2: [PASS][201] -> [ABORT][202] ([Intel XE#1033] / [Intel XE#1358] / [Intel XE#1794])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_pm@s3-mocs.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#584])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-5/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][204] ([Intel XE#1033] / [Intel XE#569])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][205] -> [ABORT][206] ([Intel XE#1358] / [Intel XE#1607])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-7/igt@xe_pm@s4-d3hot-basic-exec.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#944]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#4130])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
- shard-bmg: [PASS][209] -> [DMESG-WARN][210] ([Intel XE#1033]) +50 other tests dmesg-warn
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-bmg: [INCOMPLETE][211] ([Intel XE#3225]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: [SKIP][213] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
- shard-dg2-set2: [SKIP][215] ([Intel XE#2136]) -> [PASS][216] +1 other test pass
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][217] ([Intel XE#1727] / [Intel XE#2692]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2-set2: [DMESG-FAIL][219] ([Intel XE#1033]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_fbcon_fbt@fbc-suspend.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2-set2: [INCOMPLETE][221] ([Intel XE#2049]) -> [PASS][222] +2 other tests pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_flip@2x-absolute-wf_vblank.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-absolute-wf_vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: [INCOMPLETE][223] -> [PASS][224] +1 other test pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_flip@2x-absolute-wf_vblank@ab-hdmi-a6-dp4.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_flip@2x-absolute-wf_vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [DMESG-FAIL][225] ([Intel XE#1033]) -> [PASS][226] +3 other tests pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][227] ([Intel XE#2882]) -> [PASS][228] +1 other test pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][229] ([Intel XE#3321]) -> [PASS][230] +2 other tests pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [FAIL][231] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][233] ([Intel XE#886]) -> [PASS][234] +1 other test pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [FAIL][235] ([Intel XE#301]) -> [PASS][236] +1 other test pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [DMESG-WARN][237] ([Intel XE#2955]) -> [PASS][238] +1 other test pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a6:
- shard-dg2-set2: [FAIL][239] ([Intel XE#886]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a6.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a6.html
* igt@kms_getfb@getfb2-handle-zero:
- shard-dg2-set2: [SKIP][241] ([Intel XE#687]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_getfb@getfb2-handle-zero.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_getfb@getfb2-handle-zero.html
- shard-bmg: [SKIP][243] -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_getfb@getfb2-handle-zero.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_getfb@getfb2-handle-zero.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][245] ([Intel XE#1503]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-dg2-set2: [SKIP][247] ([Intel XE#2423] / [i915#2575]) -> [PASS][248] +3 other tests pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-bmg: [SKIP][249] ([Intel XE#4108]) -> [PASS][250] +7 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
- shard-dg2-set2: [SKIP][251] ([Intel XE#4108]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_prop_blob@blob-prop-validate:
- shard-bmg: [SKIP][253] ([Intel XE#780]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_prop_blob@blob-prop-validate.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_prop_blob@blob-prop-validate.html
* igt@kms_properties@connector-properties-legacy:
- shard-bmg: [SKIP][255] ([Intel XE#3007]) -> [PASS][256] +5 other tests pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_properties@connector-properties-legacy.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-bmg: [SKIP][257] ([Intel XE#829]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
- shard-dg2-set2: [SKIP][259] ([Intel XE#829]) -> [PASS][260] +1 other test pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][261] ([Intel XE#2883]) -> [PASS][262] +2 other tests pass
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_setmode@basic.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_setmode@basic.html
* igt@kms_vblank@accuracy-idle:
- shard-dg2-set2: [DMESG-WARN][263] ([Intel XE#1033]) -> [PASS][264] +58 other tests pass
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_vblank@accuracy-idle.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@kms_vblank@accuracy-idle.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][265] ([Intel XE#2159]) -> [PASS][266] +1 other test pass
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
- shard-bmg: [DMESG-WARN][267] ([Intel XE#1033]) -> [PASS][268] +84 other tests pass
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-5/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: [SKIP][269] ([Intel XE#1392]) -> [PASS][270] +1 other test pass
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@no-exec-bindexecqueue:
- shard-bmg: [SKIP][271] ([Intel XE#1130]) -> [PASS][272] +7 other tests pass
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_exec_basic@no-exec-bindexecqueue.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@xe_exec_basic@no-exec-bindexecqueue.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [FAIL][273] ([Intel XE#3546]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@xe_module_load@reload-no-display.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@xe_module_load@reload-no-display.html
- shard-dg2-set2: [FAIL][275] ([Intel XE#3546]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@reload-no-display.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][277] ([Intel XE#1033] / [Intel XE#1616]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@xe_pm@s2idle-d3hot-basic-exec.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-dg2-set2: [ABORT][279] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][280] +1 other test pass
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-userptr.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][281] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][282] +2 other tests pass
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_pm@s3-basic-exec.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [DMESG-WARN][283] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][284] +3 other tests pass
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@xe_pm@s3-multiple-execs.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][285] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][287] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-lnl-4/igt@xe_pm@s4-vm-bind-userptr.html
- shard-bmg: [DMESG-WARN][289] ([Intel XE#1033] / [Intel XE#2280]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_vm@mmap-style-bind-many-all:
- shard-dg2-set2: [SKIP][291] ([Intel XE#1130]) -> [PASS][292] +6 other tests pass
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_vm@mmap-style-bind-many-all.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_vm@mmap-style-bind-many-all.html
#### Warnings ####
* igt@kms_atomic_interruptible@legacy-dpms:
- shard-dg2-set2: [DMESG-WARN][293] ([Intel XE#1033]) -> [SKIP][294] ([Intel XE#2423] / [i915#2575])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_atomic_interruptible@legacy-dpms.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_atomic_interruptible@legacy-dpms.html
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-bmg: [SKIP][295] ([Intel XE#4108]) -> [SKIP][296] ([Intel XE#3007])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_atomic_transition@plane-all-transition-fencing.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition-fencing.html
- shard-dg2-set2: [SKIP][297] ([Intel XE#4108]) -> [SKIP][298] ([Intel XE#2423] / [i915#2575])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_atomic_transition@plane-all-transition-fencing.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-bmg: [SKIP][299] ([Intel XE#2327]) -> [SKIP][300] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][301] ([Intel XE#316]) -> [SKIP][302] ([Intel XE#2136])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][303] ([Intel XE#1124]) -> [SKIP][304] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
- shard-dg2-set2: [SKIP][305] ([Intel XE#1124]) -> [SKIP][306] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-bmg: [SKIP][307] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][308] ([Intel XE#1124]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
- shard-dg2-set2: [SKIP][309] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][310] ([Intel XE#1124])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg2-set2: [SKIP][311] ([Intel XE#2136]) -> [SKIP][312] ([Intel XE#1124])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][313] ([Intel XE#367]) -> [SKIP][314] ([Intel XE#2423] / [i915#2575])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: [SKIP][315] ([Intel XE#367]) -> [SKIP][316] ([Intel XE#3007])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][317] ([Intel XE#3282]) -> [SKIP][318] ([Intel XE#2887])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
- shard-dg2-set2: [SKIP][319] ([Intel XE#829]) -> [SKIP][320] ([Intel XE#455] / [Intel XE#787])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [DMESG-WARN][321] -> [DMESG-WARN][322] ([Intel XE#1033])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][323] ([Intel XE#2887]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
- shard-dg2-set2: [SKIP][325] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][326] ([Intel XE#2136]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][327] -> [SKIP][328] ([Intel XE#2887])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: [SKIP][329] ([Intel XE#2325]) -> [SKIP][330] ([Intel XE#3007])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_chamelium_color@ctm-0-50.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_chamelium_color@ctm-0-50.html
- shard-dg2-set2: [SKIP][331] ([Intel XE#306]) -> [SKIP][332] ([Intel XE#2423] / [i915#2575])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_chamelium_color@ctm-0-50.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
- shard-bmg: [SKIP][333] ([Intel XE#4108]) -> [SKIP][334] ([Intel XE#2252])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
- shard-dg2-set2: [SKIP][335] ([Intel XE#4108]) -> [SKIP][336] ([Intel XE#373])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][337] ([Intel XE#1188]) -> [DMESG-FAIL][338] ([Intel XE#1033]) +1 other test dmesg-fail
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_content_protection@uevent.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_content_protection@uevent.html
- shard-bmg: [FAIL][339] ([Intel XE#1188]) -> [DMESG-FAIL][340] ([Intel XE#1033]) +1 other test dmesg-fail
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_content_protection@uevent.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-bmg: [SKIP][341] ([Intel XE#4108]) -> [SKIP][342] ([Intel XE#2320])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_cursor_crc@cursor-random-256x85.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-bmg: [SKIP][343] ([Intel XE#2320]) -> [SKIP][344] ([Intel XE#3007])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_edge_walk@64x64-top-edge:
- shard-dg2-set2: [INCOMPLETE][345] -> [DMESG-WARN][346] ([Intel XE#1033])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_cursor_edge_walk@64x64-top-edge.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_cursor_edge_walk@64x64-top-edge.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [DMESG-FAIL][347] ([Intel XE#1033]) -> [FAIL][348] ([Intel XE#3321])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4:
- shard-dg2-set2: [DMESG-FAIL][349] ([Intel XE#1033]) -> [FAIL][350] ([Intel XE#301]) +1 other test fail
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: [SKIP][351] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][352] ([Intel XE#2293] / [Intel XE#2380])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-dg2-set2: [SKIP][353] ([Intel XE#2136]) -> [SKIP][354] ([Intel XE#455])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: [SKIP][355] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][356] ([Intel XE#2136] / [Intel XE#2231])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-bmg: [SKIP][357] ([Intel XE#4108]) -> [SKIP][358] ([Intel XE#2293] / [Intel XE#2380])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-dg2-set2: [SKIP][359] ([Intel XE#4108]) -> [SKIP][360] ([Intel XE#455])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][361] ([Intel XE#2136]) -> [SKIP][362] ([Intel XE#651])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
- shard-bmg: [SKIP][363] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][364] ([Intel XE#2311])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][365] ([Intel XE#4108]) -> [SKIP][366] ([Intel XE#651])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][367] ([Intel XE#2311]) -> [SKIP][368] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][369] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][370] ([Intel XE#4141])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][371] ([Intel XE#4141]) -> [SKIP][372] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][373] ([Intel XE#4108]) -> [SKIP][374] ([Intel XE#2311]) +4 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][375] ([Intel XE#651]) -> [SKIP][376] ([Intel XE#2136]) +2 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][377] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][378] ([Intel XE#653])
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: [SKIP][379] ([Intel XE#4108]) -> [SKIP][380] ([Intel XE#2313]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-bmg: [SKIP][381] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][382] ([Intel XE#2313]) +3 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][383] ([Intel XE#2313]) -> [SKIP][384] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
- shard-dg2-set2: [SKIP][385] ([Intel XE#653]) -> [SKIP][386] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][387] ([Intel XE#653]) -> [SKIP][388] ([Intel XE#2136]) +2 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][389] ([Intel XE#4108]) -> [SKIP][390] ([Intel XE#653])
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][391] ([Intel XE#2136]) -> [SKIP][392] ([Intel XE#653]) +2 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][393] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][394] ([Intel XE#3544])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: [SKIP][395] ([Intel XE#4108]) -> [SKIP][396] ([Intel XE#4090])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2-set2: [SKIP][397] ([Intel XE#4108]) -> [SKIP][398] ([Intel XE#2925])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2-set2: [SKIP][399] ([Intel XE#455]) -> [SKIP][400] ([Intel XE#2423] / [i915#2575])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_panel_fitting@atomic-fastset.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_panel_fitting@atomic-fastset.html
- shard-bmg: [SKIP][401] ([Intel XE#2486]) -> [SKIP][402] ([Intel XE#3007])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_panel_fitting@atomic-fastset.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-bmg: [SKIP][403] ([Intel XE#829]) -> [DMESG-WARN][404] ([Intel XE#1033])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [DMESG-FAIL][405] ([Intel XE#1033]) -> [FAIL][406] ([Intel XE#616])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_plane_cursor@primary.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_plane_cursor@primary.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: [SKIP][407] ([Intel XE#829]) -> [SKIP][408] ([Intel XE#2493])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2-set2: [SKIP][409] ([Intel XE#829]) -> [SKIP][410] ([Intel XE#455])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_plane_multiple@tiling-yf.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: [SKIP][411] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][412] ([Intel XE#2446])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: [SKIP][413] -> [SKIP][414] ([Intel XE#2387])
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: [SKIP][415] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][416] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_psr@fbc-pr-primary-page-flip.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_psr@fbc-pr-primary-page-flip.html
- shard-dg2-set2: [SKIP][417] ([Intel XE#2136]) -> [SKIP][418] ([Intel XE#2850] / [Intel XE#929])
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_psr@fbc-pr-primary-page-flip.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-bmg: [SKIP][419] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][420] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_psr@fbc-psr2-sprite-render.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-bmg: [SKIP][421] ([Intel XE#4108]) -> [SKIP][422] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_psr@psr-cursor-plane-move.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-5/igt@kms_psr@psr-cursor-plane-move.html
- shard-dg2-set2: [SKIP][423] ([Intel XE#4108]) -> [SKIP][424] ([Intel XE#2850] / [Intel XE#929])
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_psr@psr-cursor-plane-move.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][425] ([Intel XE#1729]) -> [SKIP][426] ([Intel XE#2426])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][427] ([Intel XE#2509]) -> [SKIP][428] ([Intel XE#2426])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: [ABORT][429] ([Intel XE#1033] / [Intel XE#2625] / [Intel XE#4057]) -> [DMESG-WARN][430] ([Intel XE#1033])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-434/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-dg2-set2: [SKIP][431] ([Intel XE#2905]) -> [SKIP][432] ([Intel XE#1130])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_eudebug_online@interrupt-other-debuggable.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_eudebug_online@interrupt-other-debuggable.html
- shard-bmg: [SKIP][433] ([Intel XE#2905]) -> [SKIP][434] ([Intel XE#1130])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_eudebug_online@interrupt-other-debuggable.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: [SKIP][435] ([Intel XE#1130]) -> [SKIP][436] ([Intel XE#2322]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
- shard-bmg: [SKIP][437] ([Intel XE#2322]) -> [SKIP][438] ([Intel XE#1130])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-prefetch:
- shard-dg2-set2: [SKIP][439] ([Intel XE#288]) -> [SKIP][440] ([Intel XE#1130]) +1 other test skip
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-prefetch.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-prefetch.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][441] ([Intel XE#1061]) -> [FAIL][442] ([Intel XE#1173])
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_peer2peer@read.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-436/igt@xe_peer2peer@read.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [DMESG-WARN][443] ([Intel XE#1033] / [Intel XE#569]) -> [ABORT][444] ([Intel XE#1358] / [Intel XE#1794])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [ABORT][445] ([Intel XE#1033] / [Intel XE#1358]) -> [DMESG-WARN][446] ([Intel XE#1033] / [Intel XE#569])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_pm@s3-exec-after.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-dg2-463/igt@xe_pm@s3-exec-after.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: [SKIP][447] ([Intel XE#1130]) -> [SKIP][448] ([Intel XE#944])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/shard-bmg-3/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[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#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[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#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3282
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091
[Intel XE#4108]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/687
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8206 -> IGTPW_12479
* Linux: xe-2531-9f946e94bec6e5e488407c5ff6a638850e0418a7 -> xe-2533-d577d9e67e5ac149fcd4442327210b831cddb308
IGTPW_12479: 9c4b6f2acc51e721ac4f327b692c48f5c244336b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8206: 48d7780a026179e5de232142df3ac59fec6487ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2531-9f946e94bec6e5e488407c5ff6a638850e0418a7: 9f946e94bec6e5e488407c5ff6a638850e0418a7
xe-2533-d577d9e67e5ac149fcd4442327210b831cddb308: d577d9e67e5ac149fcd4442327210b831cddb308
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/index.html
[-- Attachment #2: Type: text/html, Size: 129437 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread