* [PATCH i-g-t] lib/igt_sysfs: Multi-Tile support in IGT
@ 2025-01-22 15:00 nishit.sharma
2025-01-22 15:56 ` Matt Roper
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: nishit.sharma @ 2025-01-22 15:00 UTC (permalink / raw)
To: igt-dev, nishit.sharma, zbigniew.kempczynski, matthew.d.roper
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
+ *
+ * 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 related [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
@ 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
* ✓ i915.CI.BAT: success 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
2025-01-22 15:56 ` Matt Roper
@ 2025-01-22 20:13 ` Patchwork
2025-01-22 20:13 ` ✓ Xe.CI.BAT: " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-01-22 20:13 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2968 bytes --]
== Series Details ==
Series: lib/igt_sysfs: Multi-Tile support in IGT
URL : https://patchwork.freedesktop.org/series/143855/
State : success
== Summary ==
CI Bug Log - changes from IGT_8206 -> IGTPW_12479
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/index.html
Participating hosts (45 -> 41)
------------------------------
Missing (4): bat-apl-1 bat-arlh-2 bat-adlp-6 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12479 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8206/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/bat-mtlp-8/igt@i915_selftest@live.html
#### Possible fixes ####
* igt@i915_module_load@load:
- {bat-mtlp-9}: [DMESG-WARN][3] ([i915#13494]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8206/bat-mtlp-9/igt@i915_module_load@load.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live:
- bat-adlp-9: [DMESG-WARN][5] -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8206/bat-adlp-9/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/bat-adlp-9/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8206/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/bat-arlh-3/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8206 -> IGTPW_12479
* Linux: CI_DRM_16000 -> CI_DRM_16002
CI-20190529: 20190529
CI_DRM_16000: 9f946e94bec6e5e488407c5ff6a638850e0418a7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16002: d577d9e67e5ac149fcd4442327210b831cddb308 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12479: 9c4b6f2acc51e721ac4f327b692c48f5c244336b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8206: 48d7780a026179e5de232142df3ac59fec6487ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/index.html
[-- Attachment #2: Type: text/html, Size: 3750 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success 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
2025-01-22 15:56 ` Matt Roper
2025-01-22 20:13 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2025-01-22 20:13 ` Patchwork
2025-01-23 5:15 ` [PATCH i-g-t] " Zbigniew Kempczyński
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-01-22 20:13 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2576 bytes --]
== Series Details ==
Series: lib/igt_sysfs: Multi-Tile support in IGT
URL : https://patchwork.freedesktop.org/series/143855/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8206_BAT -> XEIGTPW_12479_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12479_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][1] -> [SKIP][2] ([Intel XE#1192]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
* igt@xe_vm@shared-pte-page:
- bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#4078])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/bat-adlp-vf/igt@xe_vm@shared-pte-page.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/bat-adlp-vf/igt@xe_vm@shared-pte-page.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12479/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
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: 3271 bytes --]
^ 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
* ✗ i915.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
` (4 preceding siblings ...)
2025-01-23 7:59 ` ✗ Xe.CI.Full: failure for " Patchwork
@ 2025-01-23 20:50 ` Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-01-23 20:50 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100260 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 CI_DRM_16002_full -> IGTPW_12479_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12479_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12479_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: [PASS][2] -> [FAIL][3] +5 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-tglu: [PASS][4] -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-tglu-6/igt@kms_fbcon_fbt@fbc-suspend.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-tglu: NOTRUN -> [INCOMPLETE][6] +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-9/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
Known issues
------------
Here are the changes found in IGTPW_12479_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-8/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#9318])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-9/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-9/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle@vecs0:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@drm_fdinfo@busy-idle@vecs0.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +10 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@drm_fdinfo@busy@rcs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-5/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#6335])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: [PASS][20] -> [ABORT][21] ([i915#13427])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#6335])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb7/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#280]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-7/igt@gem_ctx_sseu@engines.html
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@hibernate:
- shard-tglu: [PASS][30] -> [ABORT][31] ([i915#10030] / [i915#7975] / [i915#8213])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-tglu-6/igt@gem_eio@hibernate.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-10/igt@gem_eio@hibernate.html
- shard-dg2: NOTRUN -> [ABORT][32] ([i915#10030] / [i915#7975] / [i915#8213])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-4/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg1: NOTRUN -> [FAIL][33] ([i915#12543] / [i915#5784])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@gem_eio@reset-stress.html
* igt@gem_eio@wait-wedge-immediate:
- shard-mtlp: [PASS][34] -> [ABORT][35] ([i915#13193]) +1 other test abort
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-mtlp-2/igt@gem_eio@wait-wedge-immediate.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@gem_eio@wait-wedge-immediate.html
* igt@gem_exec_balancer@parallel:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-3/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#4525]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#6344])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4812]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-3/igt@gem_exec_fence@concurrent.html
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-10/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +15 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-active:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +10 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-8/igt@gem_exec_reloc@basic-wc-active.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +12 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-tglu: [PASS][51] -> [ABORT][52] ([i915#7975] / [i915#8213]) +1 other test abort
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-tglu-4/igt@gem_exec_suspend@basic-s4-devices.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html
- shard-mtlp: [PASS][53] -> [ABORT][54] ([i915#7975]) +1 other test abort
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-mtlp-4/igt@gem_exec_suspend@basic-s4-devices.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#2190])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#2190])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-10/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][60] ([i915#2190])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613] / [i915#7582])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][62] ([i915#4613]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#12193])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4565])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive:
- shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#4613])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@random:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#4613]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@big-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +13 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-5/igt@gem_mmap_gtt@big-copy-xy.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4077]) +13 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +8 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-6/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4083]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +9 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][75] ([i915#2658])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@gem_pread@exhaustion.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@gem_pread@exhaustion.html
- shard-snb: NOTRUN -> [WARN][77] ([i915#2658]) +1 other test warn
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb7/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][78] ([i915#2658])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3282]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@gem_pwrite@basic-random.html
* igt@gem_pwrite_snooped:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@gem_pwrite_snooped.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-10/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#4270])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12917] / [i915#12964])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8428]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190] / [i915#8428]) +11 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4079]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#8411]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4079])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4079]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_wb:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4077]) +6 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-3/igt@gem_tiled_wb.html
* igt@gem_userptr_blits@access-control:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#3297])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#3323])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#3282] / [i915#3297])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@gem_userptr_blits@forbidden-operations.html
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3282] / [i915#3297])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-1/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4958])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#3297]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-7/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][102] +435 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb1/igt@gem_vm_create@invalid-create.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: [PASS][103] -> [INCOMPLETE][104] ([i915#13356])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-glk5/igt@gem_workarounds@suspend-resume.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk1/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#2527]) +5 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#2527]) +4 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#2856]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-8/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4881])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-6/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [DMESG-WARN][111] ([i915#13475])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: NOTRUN -> [ABORT][112] ([i915#9820])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#6412])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-8/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#7091])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
- shard-rkl: NOTRUN -> [DMESG-WARN][115] ([i915#12964]) +2 other tests dmesg-warn
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#8399])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#6590]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#6590]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#6590]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [WARN][120] ([i915#2681]) +4 other tests warn
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#11681]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#11681])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#4387])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-8/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][124] -> [SKIP][125] ([i915#7984])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-mtlp-4/igt@i915_power@sanity.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#6245])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6188])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#5723])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][129] -> [DMESG-FAIL][130] ([i915#12061]) +1 other test dmesg-fail
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][131] ([i915#9311]) +1 other test dmesg-warn
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb7/igt@i915_selftest@mock.html
- shard-glk: NOTRUN -> [DMESG-WARN][132] ([i915#9311]) +1 other test dmesg-warn
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk4/igt@i915_selftest@mock.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [PASS][133] -> [INCOMPLETE][134] ([i915#4817])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-5/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][135] ([i915#4817])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk9/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4212]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4212]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#4212])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][139] ([i915#12761]) +1 other test incomplete
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk8/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#8709]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#8709]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-6/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#8709]) +15 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#10333])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-5/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3555])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#1769] / [i915#3555])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][146] ([i915#1769])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-transition-nonblocking:
- shard-dg1: [PASS][147] -> [DMESG-WARN][148] ([i915#4423]) +11 other tests dmesg-warn
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-dg1-13/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#5286]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [FAIL][150] ([i915#12469] / [i915#5138])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#5286]) +8 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#5286]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#4538] / [i915#5286]) +6 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#4423] / [i915#4538] / [i915#5286])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][155] -> [FAIL][156] ([i915#5138])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#3638]) +5 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180:
- shard-dg1: [PASS][158] -> [DMESG-WARN][159] ([i915#4391] / [i915#4423])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-dg1-14/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3638]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6187])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][162] +8 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#4538] / [i915#5190]) +13 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][164] +24 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#4538]) +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#6095]) +191 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#12313]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#12313])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#12313]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#10307] / [i915#6095]) +162 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#6095]) +29 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#12805])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#12805])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#6095]) +17 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][176] ([i915#12796]) +3 other tests incomplete
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk7/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [PASS][177] -> [DMESG-FAIL][178] ([i915#12964]) +6 other tests dmesg-fail
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-FAIL][179] ([i915#12964]) +1 other test dmesg-fail
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#12313]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#6095]) +29 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#6095]) +74 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#6095]) +104 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#11616] / [i915#7213])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-6/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#3742])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#7213]) +3 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3742])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#4087]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][189] +12 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#11151] / [i915#7828]) +7 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#11151] / [i915#7828]) +13 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-4/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#11151] / [i915#7828])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#11151] / [i915#7828]) +9 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#11151] / [i915#7828]) +10 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#11151] / [i915#7828]) +7 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#9979])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-10/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#7118] / [i915#9424]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#6944] / [i915#9424])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-3/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#9424])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3116])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#3299])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3299])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#7118])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#7118] / [i915#9424]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#6944] / [i915#9424])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#7116] / [i915#9424]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@kms_content_protection@uevent.html
- shard-snb: NOTRUN -> [INCOMPLETE][207] ([i915#8816])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb7/igt@kms_content_protection@uevent.html
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#13049])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8814]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#13049]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#13049])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: NOTRUN -> [FAIL][213] ([i915#13566])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#13049])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#13049])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8814])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3555]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555]) +7 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#13049])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#13046] / [i915#5354]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#9809]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#9067])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#4103])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#4103]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#4103])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#4213])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#4103] / [i915#4213])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#8588])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#1769] / [i915#3555] / [i915#3804])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#3804])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#3804])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#1257])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#12402])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#8812]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3840])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#3840])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#3840])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#3840]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#3840] / [i915#9053])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#3469])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#4854])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#1839])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#1839])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#1839])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-3/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#658])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#658])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#658])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#658])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#3637]) +5 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#9934]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#9934]) +9 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#8381])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#9934]) +9 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3637]) +5 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#12745] / [i915#4839])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][257] ([i915#4839])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-snb: [PASS][258] -> [FAIL][259] ([i915#11989]) +1 other test fail
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#3637]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@blocking-absolute-wf_vblank@a-hdmi-a1:
- shard-rkl: [PASS][261] -> [DMESG-WARN][262] ([i915#12964]) +25 other tests dmesg-warn
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-rkl-7/igt@kms_flip@blocking-absolute-wf_vblank@a-hdmi-a1.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_flip@blocking-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:
- shard-tglu: [PASS][263] -> [FAIL][264] ([i915#11989]) +2 other tests fail
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-tglu-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-snb: [PASS][265] -> [INCOMPLETE][266] ([i915#12745] / [i915#4839]) +1 other test incomplete
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#2672]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#3555]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#2672]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#2672] / [i915#8813]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#2672] / [i915#3555] / [i915#5190])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#2587] / [i915#2672] / [i915#3555])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#2587] / [i915#2672]) +4 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#2672] / [i915#3555]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#2587] / [i915#2672]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#2672] / [i915#3555]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#2672] / [i915#3555]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#2672] / [i915#3555]) +4 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#2587] / [i915#2672]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [FAIL][281] ([i915#6880])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-dg2: [PASS][282] -> [FAIL][283] ([i915#6880]) +1 other test fail
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#8708]) +26 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#1825]) +22 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#8708]) +18 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#5439])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#3023]) +33 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][289] +56 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#9766])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][291] +87 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][292] +40 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8708]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#3458]) +23 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#1825]) +48 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#5354]) +30 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#3458]) +28 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-10/igt@kms_hdr@bpc-switch-suspend.html
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#13331])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#12713])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-9/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8228]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8228]) +2 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#10656])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#12394] / [i915#13522])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#12339])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#12388])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#10656] / [i915#13522]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#12394] / [i915#13522])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#12339]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#13522])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#4816])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#6301])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#6301])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][316] ([i915#12756] / [i915#13409] / [i915#13476])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][317] ([i915#13409] / [i915#13476])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][318] ([i915#13026]) +1 other test incomplete
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][319] ([i915#10647] / [i915#12169])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][320] ([i915#10647]) +1 other test fail
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#11614] / [i915#3582]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#6953])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#12247]) +8 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-mtlp: NOTRUN -> [SKIP][325] ([i915#12247]) +4 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#12247]) +9 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#6953] / [i915#9423])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][328] ([i915#12247] / [i915#6953]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#12247]) +3 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#12247]) +7 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#12247] / [i915#3555])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#12247] / [i915#6953])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#5354])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9812])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#12343])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-10/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#9685]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#9685]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#3828])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][339] ([i915#12912])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-6/igt@kms_pm_dc@dc6-psr.html
- shard-dg1: NOTRUN -> [SKIP][340] ([i915#9685])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu: NOTRUN -> [SKIP][341] ([i915#3828])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#8430])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#9519]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][344] ([i915#9519])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#9519])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#9519])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg1: NOTRUN -> [SKIP][347] ([i915#6524])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#6524])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#6524] / [i915#6805]) +2 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-8/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#6524]) +2 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#11520]) +8 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][352] ([i915#11520]) +6 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][353] ([i915#11520]) +9 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk3/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][354] ([i915#9808])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][355] ([i915#12316]) +3 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][356] ([i915#11520]) +5 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#11520]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][358] ([i915#11520]) +9 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#11520]) +9 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#9683]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#4348])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-2/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#9683])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu: NOTRUN -> [SKIP][363] ([i915#9683])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#9683]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#9683]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#9688]) +10 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][367] ([i915#9732]) +25 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-4/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-sprite-blt:
- shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#9732]) +8 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_psr@fbc-psr-sprite-blt.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +32 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-primary-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][370] ([i915#1072] / [i915#9732]) +24 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_psr@psr2-primary-mmap-cpu.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][371] +422 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk7/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +29 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-6/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#5289]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#12755] / [i915#5190])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#5289])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#12755]) +1 other test skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#3555]) +8 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][378] ([i915#13179]) +1 other test abort
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html
- shard-dg1: NOTRUN -> [ABORT][379] ([i915#13179]) +1 other test abort
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-12/igt@kms_selftest@drm_framebuffer.html
- shard-snb: NOTRUN -> [ABORT][380] ([i915#13179]) +1 other test abort
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-snb7/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#3555]) +4 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-10/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][382] ([i915#8623])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@universal-plane-pageflip-windowed:
- shard-dg1: NOTRUN -> [DMESG-WARN][383] ([i915#4423])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@kms_universal_plane@universal-plane-pageflip-windowed.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-glk: [PASS][384] -> [INCOMPLETE][385] ([i915#12276])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-glk3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk8/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][386] ([i915#3555] / [i915#8808])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-3/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#11920])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][388] ([i915#9906]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-9/igt@kms_vrr@max-min.html
- shard-dg2: NOTRUN -> [SKIP][389] ([i915#9906])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-4/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg1: NOTRUN -> [SKIP][390] ([i915#9906]) +1 other test skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#9906])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu-1: NOTRUN -> [SKIP][392] ([i915#9906])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][393] ([i915#8808] / [i915#9906])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][394] ([i915#2437])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-1/igt@kms_writeback@writeback-check-output.html
- shard-tglu-1: NOTRUN -> [SKIP][395] ([i915#2437])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][396] ([i915#2437])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-glk7/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#2437]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][398] ([i915#2437] / [i915#9412])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][399] ([i915#2437] / [i915#9412])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg1: NOTRUN -> [SKIP][400] ([i915#2437] / [i915#9412])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-13/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][401] ([i915#2434])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][402] ([i915#4349]) +4 other tests fail
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@busy-hang:
- shard-dg1: [PASS][403] -> [FAIL][404] ([i915#4349]) +5 other tests fail
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-dg1-14/igt@perf_pmu@busy-hang.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-18/igt@perf_pmu@busy-hang.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][405] ([i915#8850])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-1/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][406] ([i915#8516])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-14/igt@perf_pmu@rc6-all-gts.html
- shard-tglu: NOTRUN -> [SKIP][407] ([i915#8516]) +1 other test skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-tglu-3/igt@perf_pmu@rc6-all-gts.html
- shard-dg2: NOTRUN -> [SKIP][408] ([i915#8516])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@perf_pmu@rc6-all-gts.html
- shard-rkl: NOTRUN -> [SKIP][409] ([i915#8516])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-3/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@render-node-busy-idle@vcs0:
- shard-dg2: [PASS][410] -> [FAIL][411] ([i915#4349]) +7 other tests fail
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-dg2-6/igt@perf_pmu@render-node-busy-idle@vcs0.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-3/igt@perf_pmu@render-node-busy-idle@vcs0.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-mtlp: [PASS][412] -> [FAIL][413] ([i915#4349]) +6 other tests fail
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16002/shard-mtlp-2/igt@perf_pmu@render-node-busy-idle@vcs1.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@vcs1.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [WARN][414] ([i915#9351])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][415] ([i915#9351])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-read:
- shard-dg1: NOTRUN -> [SKIP][416] ([i915#3708])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg1-17/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][417] ([i915#3291] / [i915#3708])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-dg2-2/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][418] ([i915#3291] / [i915#3708])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/shard-rkl-4/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NO
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12479/index.html
[-- Attachment #2: Type: text/html, Size: 110105 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-01-23 20:50 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2025-01-22 20:13 ` ✓ Xe.CI.BAT: " Patchwork
2025-01-23 5:15 ` [PATCH i-g-t] " Zbigniew Kempczyński
2025-01-23 7:59 ` ✗ Xe.CI.Full: failure for " Patchwork
2025-01-23 20:50 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox