* [PATCH i-g-t 0/3] Add sysfs attribute checks for gt_freq and pm_residency tests
@ 2024-07-30 16:42 Marcin Bernatowicz
2024-07-30 16:42 ` [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence Marcin Bernatowicz
` (6 more replies)
0 siblings, 7 replies; 16+ messages in thread
From: Marcin Bernatowicz @ 2024-07-30 16:42 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, rodrigo.vivi, kamil.konieczny, lukasz.laguna,
jakub1.kolakowski
This patch series introduces necessary attribute checks to ensure that tests
are only executed when specific sysfs attributes are present. This prevents
test failures on Virtual Function (VF) devices where these attributes might
be missing.
Marcin Bernatowicz (3):
lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence
tests/intel/xe_gt_freq: Skip test if 'freq0' attribute is missing
tests/intel/xe_pm_residency: Skip test if 'gtidle' attribute is
missing
lib/igt_sysfs.c | 25 +++++++++++++++++++++++++
lib/igt_sysfs.h | 1 +
tests/intel/xe_gt_freq.c | 1 +
tests/intel/xe_pm_residency.c | 2 ++
4 files changed, 29 insertions(+)
--
2.31.1
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence
2024-07-30 16:42 [PATCH i-g-t 0/3] Add sysfs attribute checks for gt_freq and pm_residency tests Marcin Bernatowicz
@ 2024-07-30 16:42 ` Marcin Bernatowicz
2024-07-30 19:51 ` Cavitt, Jonathan
2024-07-31 18:00 ` Kamil Konieczny
2024-07-30 16:42 ` [PATCH i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' attribute is missing Marcin Bernatowicz
` (5 subsequent siblings)
6 siblings, 2 replies; 16+ messages in thread
From: Marcin Bernatowicz @ 2024-07-30 16:42 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, rodrigo.vivi, kamil.konieczny, lukasz.laguna,
jakub1.kolakowski
Introduce xe_sysfs_gt_has_attr to verify if a specified attribute
exists within the sysfs gt directory of a device.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
lib/igt_sysfs.c | 25 +++++++++++++++++++++++++
lib/igt_sysfs.h | 1 +
2 files changed, 26 insertions(+)
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index 550472d81..bcfd9fad1 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -265,6 +265,31 @@ int xe_sysfs_gt_open(int xe_device, int gt)
return open(path, O_RDONLY);
}
+/**
+ * xe_sysfs_gt_has_attr:
+ * @xe_device: fd of the device
+ * @gt: gt number
+ * @attr: attr inside sysfs gt dir that needs to be checked for existence
+ *
+ * This checks if specified attr exists in device sysfs gt directory.
+ *
+ * Returns:
+ * true if attr exists in sysfs, false otherwise.
+ */
+bool xe_sysfs_gt_has_attr(int xe_device, int gt, const char *attr)
+{
+ bool has_attr;
+ int gt_fd;
+
+ gt_fd = xe_sysfs_gt_open(xe_device, gt);
+ if (gt_fd < 0)
+ return false;
+
+ has_attr = igt_sysfs_has_attr(gt_fd, attr);
+ close(gt_fd);
+ return has_attr;
+}
+
static const char *xe_engine_class_to_str(__u16 class)
{
static const char * const str[] = {
diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h
index 5d050c786..b0288fe36 100644
--- a/lib/igt_sysfs.h
+++ b/lib/igt_sysfs.h
@@ -168,6 +168,7 @@ void igt_sysfs_engines(int xe, int engines, const char **property,
char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen);
int xe_sysfs_gt_open(int xe_device, int gt);
+bool xe_sysfs_gt_has_attr(int xe_device, int gt, const char *attr);
char *xe_sysfs_tile_path(int xe_device, int tile, char *path, int pathlen);
int xe_sysfs_tile_open(int xe_device, int tile);
int xe_sysfs_get_num_tiles(int xe_device);
--
2.31.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' attribute is missing
2024-07-30 16:42 [PATCH i-g-t 0/3] Add sysfs attribute checks for gt_freq and pm_residency tests Marcin Bernatowicz
2024-07-30 16:42 ` [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence Marcin Bernatowicz
@ 2024-07-30 16:42 ` Marcin Bernatowicz
2024-07-30 19:51 ` Cavitt, Jonathan
2024-07-30 16:42 ` [PATCH i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' " Marcin Bernatowicz
` (4 subsequent siblings)
6 siblings, 1 reply; 16+ messages in thread
From: Marcin Bernatowicz @ 2024-07-30 16:42 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, rodrigo.vivi, kamil.konieczny, lukasz.laguna,
jakub1.kolakowski
Add igt_require check for 'freq0' attribute to skip frequency tests
on VF devices where this attribute is not present, preventing test
failure.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
tests/intel/xe_gt_freq.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
index 93ebb5ed0..0a0efeff5 100644
--- a/tests/intel/xe_gt_freq.c
+++ b/tests/intel/xe_gt_freq.c
@@ -414,6 +414,7 @@ igt_main
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
+ igt_require(xe_sysfs_gt_has_attr(fd, 0, "freq0"));
/* The defaults are the same. Stashing the gt0 is enough */
stash_min = get_freq(fd, 0, "min");
stash_max = get_freq(fd, 0, "max");
--
2.31.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' attribute is missing
2024-07-30 16:42 [PATCH i-g-t 0/3] Add sysfs attribute checks for gt_freq and pm_residency tests Marcin Bernatowicz
2024-07-30 16:42 ` [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence Marcin Bernatowicz
2024-07-30 16:42 ` [PATCH i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' attribute is missing Marcin Bernatowicz
@ 2024-07-30 16:42 ` Marcin Bernatowicz
2024-07-30 19:54 ` Cavitt, Jonathan
2024-07-30 17:23 ` ✓ CI.xeBAT: success for Add sysfs attribute checks for gt_freq and pm_residency tests Patchwork
` (3 subsequent siblings)
6 siblings, 1 reply; 16+ messages in thread
From: Marcin Bernatowicz @ 2024-07-30 16:42 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, rodrigo.vivi, kamil.konieczny, lukasz.laguna,
jakub1.kolakowski
Add an igt_require check for 'gtidle' attribute to skip residency
tests on VF devices where this attribute is not present, preventing
test failure.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
tests/intel/xe_pm_residency.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
index 51735d887..dda4d56fe 100644
--- a/tests/intel/xe_pm_residency.c
+++ b/tests/intel/xe_pm_residency.c
@@ -317,7 +317,9 @@ igt_main
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
+
igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
+ igt_require(xe_sysfs_gt_has_attr(fd, 0, "gtidle"));
}
igt_describe("Validate GT C6 on idle");
--
2.31.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* ✓ CI.xeBAT: success for Add sysfs attribute checks for gt_freq and pm_residency tests
2024-07-30 16:42 [PATCH i-g-t 0/3] Add sysfs attribute checks for gt_freq and pm_residency tests Marcin Bernatowicz
` (2 preceding siblings ...)
2024-07-30 16:42 ` [PATCH i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' " Marcin Bernatowicz
@ 2024-07-30 17:23 ` Patchwork
2024-07-30 17:36 ` ✗ Fi.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-07-30 17:23 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2927 bytes --]
== Series Details ==
Series: Add sysfs attribute checks for gt_freq and pm_residency tests
URL : https://patchwork.freedesktop.org/series/136687/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7942_BAT -> XEIGTPW_11497_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11497_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_intel_bb@blit-simple:
- {bat-lnl-2}: [DMESG-WARN][1] ([Intel XE#1705]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/bat-lnl-2/igt@xe_intel_bb@blit-simple.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/bat-lnl-2/igt@xe_intel_bb@blit-simple.html
#### Warnings ####
* igt@core_hotunplug@unbind-rebind:
- bat-bmg-1: [ABORT][3] ([Intel XE#2418]) -> [ABORT][4] ([Intel XE#2418] / [Intel XE#2421])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/bat-bmg-1/igt@core_hotunplug@unbind-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/bat-bmg-1/igt@core_hotunplug@unbind-rebind.html
- bat-adlp-7: [ABORT][5] ([Intel XE#2418]) -> [ABORT][6] ([Intel XE#2418] / [Intel XE#2421])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
- bat-lnl-1: [ABORT][7] ([Intel XE#2418]) -> [ABORT][8] ([Intel XE#2418] / [Intel XE#2421])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1705
[Intel XE#2418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2418
[Intel XE#2421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2421
Build changes
-------------
* IGT: IGT_7942 -> IGTPW_11497
* Linux: xe-1684-3a93d4a1f4872fbdfe43e9b7f1a7dfd9236a642d -> xe-1691-acd846e309e206a4dbc83e4b857b6604aa0741af
IGTPW_11497: 11497
IGT_7942: 0f02dc176959e6296866b1bafd3982e277a5e44b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1684-3a93d4a1f4872fbdfe43e9b7f1a7dfd9236a642d: 3a93d4a1f4872fbdfe43e9b7f1a7dfd9236a642d
xe-1691-acd846e309e206a4dbc83e4b857b6604aa0741af: acd846e309e206a4dbc83e4b857b6604aa0741af
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/index.html
[-- Attachment #2: Type: text/html, Size: 4027 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Fi.CI.BAT: failure for Add sysfs attribute checks for gt_freq and pm_residency tests
2024-07-30 16:42 [PATCH i-g-t 0/3] Add sysfs attribute checks for gt_freq and pm_residency tests Marcin Bernatowicz
` (3 preceding siblings ...)
2024-07-30 17:23 ` ✓ CI.xeBAT: success for Add sysfs attribute checks for gt_freq and pm_residency tests Patchwork
@ 2024-07-30 17:36 ` Patchwork
2024-07-30 18:39 ` ✗ CI.xeFULL: " Patchwork
2024-08-01 10:27 ` [PATCH v2 i-g-t 0/3] Add sysfs node " Marcin Bernatowicz
6 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-07-30 17:36 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9903 bytes --]
== Series Details ==
Series: Add sysfs attribute checks for gt_freq and pm_residency tests
URL : https://patchwork.freedesktop.org/series/136687/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15156 -> IGTPW_11497
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11497 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11497, 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_11497/index.html
Participating hosts (39 -> 38)
------------------------------
Additional (3): bat-dg2-11 fi-cfl-8109u bat-jsl-1
Missing (4): bat-mtlp-8 bat-arls-1 fi-snb-2520m fi-kbl-8809g
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11497:
### IGT changes ###
#### Possible regressions ####
* igt@runner@aborted:
- fi-cfl-8109u: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/fi-cfl-8109u/igt@runner@aborted.html
Known issues
------------
Here are the changes found in IGTPW_11497 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][2] ([i915#9318])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@verify-random:
- bat-jsl-1: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-dg2-11: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-2: [PASS][9] -> [INCOMPLETE][10] ([i915#9413])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15156/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#4212]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#5190])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#4215] / [i915#5190])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-1: NOTRUN -> [SKIP][15] ([i915#4103]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#3840])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@kms_dsc@dsc-basic.html
- bat-jsl-1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9886])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-jsl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-jsl-1: NOTRUN -> [SKIP][18]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-11: NOTRUN -> [SKIP][19]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#5274])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#5354])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-11: NOTRUN -> [SKIP][22] ([i915#1072] / [i915#9732]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-11: NOTRUN -> [SKIP][23] ([i915#3555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
- bat-jsl-1: NOTRUN -> [SKIP][24] ([i915#3555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-11: NOTRUN -> [SKIP][25] ([i915#3708])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-11: NOTRUN -> [SKIP][26] ([i915#3708] / [i915#4077]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- bat-dg2-11: NOTRUN -> [SKIP][27] ([i915#3291] / [i915#3708]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-dg2-11/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- {bat-arlh-3}: [DMESG-WARN][28] ([i915#11349] / [i915#11378]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15156/bat-arlh-3/igt@i915_selftest@live@hangcheck.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/bat-arlh-3/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7942 -> IGTPW_11497
CI-20190529: 20190529
CI_DRM_15156: acd846e309e206a4dbc83e4b857b6604aa0741af @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11497: 11497
IGT_7942: 0f02dc176959e6296866b1bafd3982e277a5e44b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11497/index.html
[-- Attachment #2: Type: text/html, Size: 11729 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ CI.xeFULL: failure for Add sysfs attribute checks for gt_freq and pm_residency tests
2024-07-30 16:42 [PATCH i-g-t 0/3] Add sysfs attribute checks for gt_freq and pm_residency tests Marcin Bernatowicz
` (4 preceding siblings ...)
2024-07-30 17:36 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-07-30 18:39 ` Patchwork
2024-08-01 10:27 ` [PATCH v2 i-g-t 0/3] Add sysfs node " Marcin Bernatowicz
6 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-07-30 18:39 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 139023 bytes --]
== Series Details ==
Series: Add sysfs attribute checks for gt_freq and pm_residency tests
URL : https://patchwork.freedesktop.org/series/136687/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7942_full -> XEIGTPW_11497_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11497_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11497_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 (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11497_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][3] +7 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_invalid_mode@uint-max-clock:
- shard-lnl: [PASS][4] -> [SKIP][5] +49 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_invalid_mode@uint-max-clock.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_invalid_mode@uint-max-clock.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [PASS][6] -> [FAIL][7] +8 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-7/igt@kms_vrr@max-min@pipe-a-edp-1.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-1/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_pm@s2idle-basic:
- shard-dg2-set2: [PASS][8] -> [DMESG-WARN][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@xe_pm@s2idle-basic.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@xe_pm@s2idle-basic.html
#### Warnings ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-lnl: [ABORT][10] ([Intel XE#2421]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-2/igt@core_hotunplug@hotrebind-lateclose.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@core_hotunplug@hotrebind-lateclose.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-lnl: [SKIP][12] ([Intel XE#1512]) -> [SKIP][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-2/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-lnl: [SKIP][14] ([Intel XE#306]) -> [SKIP][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_chamelium_color@ctm-0-50.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: [SKIP][16] ([Intel XE#373]) -> [SKIP][17] +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-lnl: [SKIP][18] ([Intel XE#1424]) -> [SKIP][19] +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_cursor_crc@cursor-random-max-size.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: [SKIP][20] ([Intel XE#1413]) -> [SKIP][21] +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: [SKIP][22] ([Intel XE#309]) -> [SKIP][23] +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-lnl: [SKIP][24] ([Intel XE#323]) -> [SKIP][25]
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: [SKIP][26] ([Intel XE#702]) -> [SKIP][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_feature_discovery@display-2x.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-lnl: [SKIP][28] ([Intel XE#1421]) -> [SKIP][29] +4 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@bo-too-big-interruptible:
- shard-lnl: [TIMEOUT][30] ([Intel XE#1504]) -> [SKIP][31]
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_flip@bo-too-big-interruptible.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@kms_flip@bo-too-big-interruptible.html
* igt@kms_plane_lowres@tiling-4:
- shard-lnl: [SKIP][32] ([Intel XE#599]) -> [SKIP][33] +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-2/igt@kms_plane_lowres@tiling-4.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation:
- shard-lnl: [SKIP][34] ([Intel XE#498]) -> [SKIP][35]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: [SKIP][36] ([Intel XE#2318]) -> [SKIP][37] +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-lnl: [SKIP][38] ([Intel XE#1437]) -> [SKIP][39] +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-lnl: [SKIP][40] ([Intel XE#362]) -> [SKIP][41]
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [FAIL][42] ([Intel XE#2180]) -> [SKIP][43]
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@negative-basic:
- shard-lnl: [SKIP][44] ([Intel XE#1499] / [Intel XE#599]) -> [SKIP][45]
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_vrr@negative-basic.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-lnl: [SKIP][46] ([Intel XE#756]) -> [SKIP][47]
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_writeback@writeback-pixel-formats.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_writeback@writeback-pixel-formats.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p}:
- shard-lnl: [SKIP][48] ([Intel XE#2191]) -> [SKIP][49]
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* {igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p}:
- shard-lnl: [SKIP][50] ([Intel XE#1512]) -> [SKIP][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
Known issues
------------
Here are the changes found in XEIGTPW_11497_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#1426]) +1 other test fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][54] -> [FAIL][55] ([Intel XE#1426]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1407]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#1659])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#1201]) +24 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-lnl: [PASS][62] -> [SKIP][63] ([Intel XE#2351]) +43 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1124]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#610])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1201] / [Intel XE#367])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#367])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +22 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1399]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-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][71] ([Intel XE#1201] / [Intel XE#787]) +90 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#787]) +13 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#1201] / [Intel XE#306]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_chamelium_color@degamma.html
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#306]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#373]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#373]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#373]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1413]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1424])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#309])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1201] / [Intel XE#323]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1201] / [i915#3804])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1201] / [Intel XE#776])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1421]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][89] ([Intel XE#2019]) +1 other test dmesg-warn
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@absolute-wf_vblank:
- shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#1201] / [i915#2575]) +64 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_flip@absolute-wf_vblank.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][92] ([Intel XE#1551]) +1 other test dmesg-warn
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1397] / [Intel XE#1745])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1401] / [Intel XE#1745])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1401])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#455]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1201] / [Intel XE#2231])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#651]) +4 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#651]) +7 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1201] / [Intel XE#2351]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1201] / [Intel XE#651]) +14 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1201]) +23 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2351]) +11 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#656]) +19 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-dg2-set2: [PASS][106] -> [SKIP][107] ([Intel XE#1201] / [Intel XE#2351]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#653]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1201] / [Intel XE#653]) +20 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#1201] / [i915#2575]) +9 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_invalid_mode@bad-vtotal:
- shard-lnl: [PASS][111] -> [SKIP][112] ([Intel XE#2423]) +12 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_invalid_mode@bad-vtotal.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_invalid_mode@bad-vtotal.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [PASS][113] -> [DMESG-WARN][114] ([Intel XE#1162])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4:
- shard-dg2-set2: [PASS][115] -> [DMESG-WARN][116] ([Intel XE#2019])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#599]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#498]) +6 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-dg2-set2: [PASS][120] -> [INCOMPLETE][121] ([Intel XE#1195]) +1 other test incomplete
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2318]) +10 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1201] / [Intel XE#2318]) +5 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1201] / [Intel XE#455]) +7 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1439])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1201] / [Intel XE#1489])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1122] / [Intel XE#1201])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1128])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1406])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1201] / [Intel XE#929]) +13 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#929]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_psr@psr-suspend.html
* igt@kms_rmfb@close-fd@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][132] ([Intel XE#294])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-1/igt@kms_rmfb@close-fd@pipe-a-edp-1.html
* igt@kms_rmfb@close-fd@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][133] ([Intel XE#294]) +1 other test fail
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@kms_rmfb@close-fd@pipe-b-dp-4.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][134] -> [FAIL][135] ([Intel XE#899])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2423]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_writeback@writeback-fb-id:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#756])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_writeback@writeback-fb-id.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1123] / [Intel XE#1201])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1126] / [Intel XE#1201])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][141] ([Intel XE#1473] / [Intel XE#392])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#688]) +6 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [PASS][143] -> [TIMEOUT][144] ([Intel XE#1473])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@xe_evict@evict-beng-threads-large.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1392]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-invalid-fault:
- shard-lnl: [PASS][146] -> [SKIP][147] ([Intel XE#1130]) +122 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-2/igt@xe_exec_fault_mode@many-invalid-fault.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@xe_exec_fault_mode@many-invalid-fault.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1201] / [Intel XE#288]) +15 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
* igt@xe_exec_reset@cm-close-fd-no-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1130] / [Intel XE#1201]) +29 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@xe_exec_reset@cm-close-fd-no-exec.html
* igt@xe_exec_threads@threads-cm-fd-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1130]) +21 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@xe_exec_threads@threads-cm-fd-userptr-invalidate.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1201] / [Intel XE#255])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@xe_huc_copy@huc_copy.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#378])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@xe_module_load@force-load.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1201] / [Intel XE#1337])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1201] / [Intel XE#979])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#979])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@s2idle-mocs:
- shard-lnl: [PASS][156] -> [FAIL][157] ([Intel XE#1924])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@xe_pm@s2idle-mocs.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-1/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][158] ([Intel XE#1551] / [Intel XE#569])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#584])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][160] -> [ABORT][161] ([Intel XE#1358] / [Intel XE#1607]) +1 other test abort
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-5/igt@xe_pm@s4-d3hot-basic-exec.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#2280])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@xe_pm@s4-vm-bind-userptr.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#944])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-huc.html
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#944]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: [PASS][167] -> [SKIP][168] ([Intel XE#1130] / [Intel XE#1201]) +105 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Possible fixes ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1201] / [Intel XE#1885]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@core_hotunplug@hotunplug-rescan.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html
- shard-lnl: [SKIP][171] ([Intel XE#1885]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@core_hotunplug@hotunplug-rescan.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@core_hotunplug@hotunplug-rescan.html
* igt@fbdev@pan:
- shard-lnl: [SKIP][173] -> [PASS][174] +2 other tests pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@fbdev@pan.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@fbdev@pan.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][175] ([Intel XE#911]) -> [PASS][176] +3 other tests pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [i915#2575]) -> [PASS][178] +55 other tests pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-64x64.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_flip@flip-vs-rmfb:
- shard-lnl: [SKIP][179] ([Intel XE#2423]) -> [PASS][180] +42 other tests pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_flip@flip-vs-rmfb.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
- shard-dg2-set2: [INCOMPLETE][181] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-lnl: [SKIP][183] ([Intel XE#2366]) -> [PASS][184] +2 other tests pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][185] ([Intel XE#1201]) -> [PASS][186] +26 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1:
- shard-lnl: [FAIL][187] ([Intel XE#2028]) -> [PASS][188] +1 other test pass
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [DMESG-FAIL][189] ([Intel XE#324]) -> [PASS][190] +1 other test pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_plane@plane-position-hole.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_plane@plane-position-hole.html
* {igt@kms_plane@plane-position-hole@pipe-b-plane-4}:
- shard-lnl: [DMESG-WARN][191] ([Intel XE#324]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-b-plane-4.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-b-plane-4.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][193] ([Intel XE#361]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-lnl: [INCOMPLETE][195] -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@kms_pm_backlight@fade-with-suspend.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-lnl: [SKIP][197] ([Intel XE#2351]) -> [PASS][198] +25 other tests pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-render.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6:
- shard-dg2-set2: [FAIL][199] ([Intel XE#899]) -> [PASS][200] +1 other test pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [INCOMPLETE][201] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@xe_evict@evict-cm-threads-large.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-dg2-set2: [SKIP][203] ([Intel XE#1130] / [Intel XE#1201]) -> [PASS][204] +70 other tests pass
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-basic.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_threads@threads-userptr-rebind-err:
- shard-lnl: [SKIP][205] ([Intel XE#1130]) -> [PASS][206] +76 other tests pass
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@xe_exec_threads@threads-userptr-rebind-err.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@xe_exec_threads@threads-userptr-rebind-err.html
* igt@xe_gt_freq@freq_fixed_exec:
- shard-dg2-set2: [FAIL][207] ([Intel XE#2262]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@xe_gt_freq@freq_fixed_exec.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@xe_gt_freq@freq_fixed_exec.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [SKIP][209] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@xe_live_ktest@xe_bo.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
* igt@xe_pm@s2idle-basic:
- shard-lnl: [FAIL][211] ([Intel XE#1924] / [Intel XE#2028]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@xe_pm@s2idle-basic.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [ABORT][213] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][215] ([Intel XE#2019]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@xe_pm@s4-vm-bind-prefetch.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][217] ([Intel XE#2019] / [Intel XE#2280]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@xe_pm@s4-vm-bind-unbind-all.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@xe_pm@s4-vm-bind-unbind-all.html
#### Warnings ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-dg2-set2: [ABORT][219] ([Intel XE#2421]) -> [SKIP][220] ([Intel XE#1201])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@core_hotunplug@hotrebind-lateclose.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@core_hotunplug@hotrebind-lateclose.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][221] ([Intel XE#316]) -> [SKIP][222] ([Intel XE#1201] / [Intel XE#2351])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: [SKIP][223] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][224] ([Intel XE#1201]) +4 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][225] ([Intel XE#316]) -> [SKIP][226] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: [FAIL][227] ([Intel XE#1659]) -> [SKIP][228] ([Intel XE#2351])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][229] ([Intel XE#316]) -> [SKIP][230] ([Intel XE#1201])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-270.html
- shard-lnl: [SKIP][231] ([Intel XE#1407]) -> [SKIP][232] ([Intel XE#2351]) +6 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_big_fb@linear-16bpp-rotate-270.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2-set2: [DMESG-WARN][233] -> [SKIP][234] ([Intel XE#1201] / [Intel XE#2351])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-dg2-set2: [SKIP][235] ([Intel XE#1124]) -> [SKIP][236] ([Intel XE#1201])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][237] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][238] ([Intel XE#1201]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][239] ([Intel XE#1201]) -> [SKIP][240] ([Intel XE#619])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
- shard-lnl: [SKIP][241] ([Intel XE#2351]) -> [SKIP][242] ([Intel XE#1467])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: [SKIP][243] ([Intel XE#1124]) -> [SKIP][244] ([Intel XE#1124] / [Intel XE#1201]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][245] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][246] ([Intel XE#1124]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: [SKIP][247] ([Intel XE#1124]) -> [SKIP][248] ([Intel XE#2351]) +6 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
- shard-dg2-set2: [SKIP][249] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][250] ([Intel XE#1201] / [Intel XE#2351])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-lnl: [SKIP][251] ([Intel XE#2351]) -> [SKIP][252] ([Intel XE#1124]) +6 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][253] ([Intel XE#1201] / [Intel XE#607]) -> [SKIP][254] ([Intel XE#607])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-lnl: [SKIP][255] ([Intel XE#2351]) -> [SKIP][256] ([Intel XE#1428])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][257] ([Intel XE#1201]) -> [SKIP][258] ([Intel XE#1124] / [Intel XE#1201]) +6 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg2-set2: [SKIP][259] ([Intel XE#1201]) -> [SKIP][260] ([Intel XE#1201] / [Intel XE#346])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_big_joiner@basic.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_big_joiner@basic.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][261] ([Intel XE#367]) -> [SKIP][262] ([Intel XE#1201] / [Intel XE#367])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][263] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][264] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
- shard-lnl: [SKIP][265] ([Intel XE#1512]) -> [SKIP][266] ([Intel XE#2423])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][267] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][268] ([Intel XE#1201] / [i915#2575]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][269] ([Intel XE#787]) -> [SKIP][270] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][271] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][272] ([Intel XE#1201]) +6 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-lnl: [SKIP][273] ([Intel XE#2351]) -> [SKIP][274] ([Intel XE#1399]) +6 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][275] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][276] ([Intel XE#787]) +34 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-lnl: [SKIP][277] ([Intel XE#1399]) -> [SKIP][278] ([Intel XE#2351]) +12 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][279] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][280] ([Intel XE#1201]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][281] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][282] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [FAIL][283] ([Intel XE#616]) -> [SKIP][284] ([Intel XE#1201])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][285] ([Intel XE#1201]) -> [SKIP][286] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][287] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][288] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][289] ([Intel XE#1252]) -> [SKIP][290] ([Intel XE#1201] / [Intel XE#1252])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][291] ([Intel XE#1201]) -> [SKIP][292] ([Intel XE#1201] / [Intel XE#314])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-lnl: [SKIP][293] ([Intel XE#2351]) -> [SKIP][294] ([Intel XE#314])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_cdclk@mode-transition-all-outputs.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2-set2: [SKIP][295] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][296] ([Intel XE#373]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_chamelium_audio@hdmi-audio.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: [SKIP][297] ([Intel XE#306]) -> [SKIP][298] ([Intel XE#1201] / [i915#2575])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_chamelium_color@ctm-0-50.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: [SKIP][299] ([Intel XE#306]) -> [SKIP][300] ([Intel XE#2423])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-7/igt@kms_chamelium_color@ctm-max.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_chamelium_color@ctm-max.html
- shard-dg2-set2: [SKIP][301] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][302] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_chamelium_color@ctm-max.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][303] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][304] ([Intel XE#306])
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_chamelium_color@ctm-red-to-blue.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: [SKIP][305] ([Intel XE#2423]) -> [SKIP][306] ([Intel XE#373]) +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
- shard-dg2-set2: [SKIP][307] ([Intel XE#1201] / [i915#2575]) -> [SKIP][308] ([Intel XE#373])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-dg2-set2: [SKIP][309] ([Intel XE#1201] / [i915#2575]) -> [SKIP][310] ([Intel XE#1201] / [Intel XE#373]) +2 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2-set2: [SKIP][311] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][312] ([Intel XE#1201] / [i915#2575]) +6 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_chamelium_frames@dp-crc-fast.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_chamelium_frames@dp-crc-fast.html
- shard-lnl: [SKIP][313] ([Intel XE#373]) -> [SKIP][314] ([Intel XE#2423]) +2 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_chamelium_frames@dp-crc-fast.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2-set2: [SKIP][315] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][316] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-storm.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][317] ([Intel XE#373]) -> [SKIP][318] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [FAIL][319] ([Intel XE#1178]) -> [SKIP][320] ([Intel XE#1201] / [i915#2575]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][321] ([Intel XE#1201] / [i915#2575]) -> [SKIP][322] ([Intel XE#1201] / [Intel XE#307])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][323] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][324] ([Intel XE#307])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_content_protection@dp-mst-type-1.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2-set2: [SKIP][325] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][326] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_content_protection@mei-interface.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_content_protection@mei-interface.html
- shard-lnl: [SKIP][327] ([Intel XE#1468]) -> [SKIP][328] ([Intel XE#2423])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-2/igt@kms_content_protection@mei-interface.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][329] ([Intel XE#1201] / [i915#2575]) -> [SKIP][330] ([Intel XE#1201] / [Intel XE#308])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-lnl: [SKIP][331] ([Intel XE#2423]) -> [SKIP][332] ([Intel XE#1413])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-lnl: [SKIP][333] ([Intel XE#1424]) -> [SKIP][334] ([Intel XE#2423]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][335] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][336] ([Intel XE#308])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2-set2: [SKIP][337] ([Intel XE#308]) -> [SKIP][338] ([Intel XE#1201] / [Intel XE#308])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x170.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: [SKIP][339] ([Intel XE#2423]) -> [SKIP][340] ([Intel XE#1424]) +3 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: [SKIP][341] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][342] ([Intel XE#1201] / [i915#2575])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x170.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: [SKIP][343] ([Intel XE#308]) -> [SKIP][344] ([Intel XE#1201] / [i915#2575])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x512.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: [SKIP][345] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][346] ([Intel XE#1201] / [i915#2575]) +6 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-max-size.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2-set2: [DMESG-FAIL][347] ([Intel XE#1551]) -> [SKIP][348] ([Intel XE#1201] / [i915#2575]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_cursor_crc@cursor-suspend.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][349] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][350] ([Intel XE#1201] / [i915#2575])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-lnl: [SKIP][351] ([Intel XE#2423]) -> [SKIP][352] ([Intel XE#323]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-lnl: [SKIP][353] ([Intel XE#2423]) -> [SKIP][354] ([Intel XE#309]) +2 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][355] ([Intel XE#1201] / [i915#2575]) -> [SKIP][356] ([Intel XE#1201] / [Intel XE#323])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/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-dg2-set2: [SKIP][357] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][358] ([Intel XE#323])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2-set2: [SKIP][359] ([Intel XE#1201]) -> [SKIP][360] ([Intel XE#1201] / [Intel XE#2351]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: [SKIP][361] ([Intel XE#599]) -> [SKIP][362] ([Intel XE#2351]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_dsc@dsc-with-bpc.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: [SKIP][363] ([Intel XE#2423]) -> [SKIP][364] ([Intel XE#1138])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@kms_feature_discovery@display-4x.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][365] ([Intel XE#1201] / [i915#2575]) -> [SKIP][366] ([Intel XE#1135] / [Intel XE#1201])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_feature_discovery@psr1.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: [SKIP][367] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][368] ([Intel XE#1201] / [i915#2575])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_feature_discovery@psr2.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: [SKIP][369] ([Intel XE#2423]) -> [SKIP][370] ([Intel XE#1421]) +2 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-lnl: [SKIP][371] ([Intel XE#1421]) -> [SKIP][372] ([Intel XE#2423])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][373] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#2049]) -> [DMESG-WARN][374] ([Intel XE#1551])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][375] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][376] ([Intel XE#1201]) +5 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-lnl: [SKIP][377] ([Intel XE#1401] / [Intel XE#1745]) -> [SKIP][378] ([Intel XE#2351]) +5 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][379] ([Intel XE#455]) -> [SKIP][380] ([Intel XE#1201])
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-lnl: [SKIP][381] ([Intel XE#2351]) -> [SKIP][382] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][383] ([Intel XE#455]) -> [SKIP][384] ([Intel XE#1201] / [Intel XE#455]) +15 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-lnl: [SKIP][385] ([Intel XE#2423]) -> [SKIP][386] ([Intel XE#352])
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_force_connector_basic@force-edid.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: [SKIP][387] ([Intel XE#2351]) -> [SKIP][388] ([Intel XE#651]) +6 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][389] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][390] ([Intel XE#651]) +9 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][391] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][392] ([Intel XE#1201] / [Intel XE#2351]) +2 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][393] ([Intel XE#651]) -> [SKIP][394] ([Intel XE#1201] / [Intel XE#651]) +12 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][395] ([Intel XE#1201]) -> [SKIP][396] ([Intel XE#1201] / [Intel XE#651]) +10 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc:
- shard-dg2-set2: [SKIP][397] ([Intel XE#1201]) -> [SKIP][398] ([Intel XE#651])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-dg2-set2: [SKIP][399] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][400] ([Intel XE#1201]) +14 other tests skip
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: [SKIP][401] ([Intel XE#651]) -> [SKIP][402] ([Intel XE#1201]) +4 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
- shard-lnl: [SKIP][403] ([Intel XE#651]) -> [SKIP][404] ([Intel XE#2351]) +10 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][405] ([Intel XE#653]) -> [SKIP][406] ([Intel XE#1201]) +5 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][407] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][408] ([Intel XE#1201]) +18 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][409] ([Intel XE#1201]) -> [SKIP][410] ([Intel XE#653]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][411] ([Intel XE#1201]) -> [SKIP][412] ([Intel XE#1201] / [Intel XE#653]) +8 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2-set2: [SKIP][413] ([Intel XE#1201]) -> [SKIP][414] ([Intel XE#1201] / [Intel XE#455])
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][415] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][416] ([Intel XE#653]) +8 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][417] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][418] ([Intel XE#1201] / [Intel XE#2351])
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][419] ([Intel XE#653]) -> [SKIP][420] ([Intel XE#1201] / [Intel XE#653]) +13 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][421] ([Intel XE#653]) -> [SKIP][422] ([Intel XE#1201] / [Intel XE#2351])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: [SKIP][423] ([Intel XE#656]) -> [SKIP][424] ([Intel XE#2351]) +37 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: [SKIP][425] ([Intel XE#2351]) -> [SKIP][426] ([Intel XE#656]) +17 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-lnl: [SKIP][427] ([Intel XE#2423]) -> [SKIP][428] ([Intel XE#605])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_getfb@getfb-reject-ccs.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_getfb@getfb-reject-ccs.html
- shard-dg2-set2: [SKIP][429] ([Intel XE#1201] / [i915#2575]) -> [SKIP][430] ([Intel XE#1201] / [Intel XE#605])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: [SKIP][431] ([Intel XE#1470]) -> [SKIP][432] ([Intel XE#2423])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_hdmi_inject@inject-4k.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@static-toggle:
- shard-lnl: [SKIP][433] ([Intel XE#599]) -> [SKIP][434] ([Intel XE#2423])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-2/igt@kms_hdr@static-toggle.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_hdr@static-toggle.html
* igt@kms_panel_fitting@legacy:
- shard-dg2-set2: [SKIP][435] ([Intel XE#1201] / [i915#2575]) -> [SKIP][436] ([Intel XE#1201] / [Intel XE#455]) +2 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_panel_fitting@legacy.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: [SKIP][437] ([Intel XE#2423]) -> [SKIP][438] ([Intel XE#599]) +1 other test skip
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@kms_plane_multiple@tiling-yf.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: [SKIP][439] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][440] ([Intel XE#1201] / [i915#2575])
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: [SKIP][441] ([Intel XE#498]) -> [SKIP][442] ([Intel XE#2423]) +1 other test skip
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-lnl: [SKIP][443] ([Intel XE#2366]) -> [SKIP][444] ([Intel XE#498])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- shard-lnl: [SKIP][445] ([Intel XE#2318]) -> [SKIP][446] ([Intel XE#2423])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-lnl: [SKIP][447] ([Intel XE#2423]) -> [SKIP][448] ([Intel XE#2318])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][449] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][450] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455])
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][451] ([Intel XE#2318]) -> [SKIP][452] ([Intel XE#1201] / [Intel XE#2318]) +2 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-6.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][453] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][454] ([Intel XE#1201] / [i915#2575])
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: [SKIP][455] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][456] ([Intel XE#870])
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_pm_backlight@basic-brightness.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][457] ([Intel XE#870]) -> [SKIP][458] ([Intel XE#1201] / [Intel XE#870])
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_pm_backlight@fade.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: [SKIP][459] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][460] ([Intel XE#1201])
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_pm_backlight@fade-with-dpms.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][461] ([Intel XE#1201]) -> [SKIP][462] ([Intel XE#1122] / [Intel XE#1201])
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-lnl: [SKIP][463] ([Intel XE#2351]) -> [SKIP][464] ([Intel XE#736])
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: [SKIP][465] ([Intel XE#2351]) -> [SKIP][466] ([Intel XE#1131])
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_pm_dc@dc5-dpms-negative.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][467] ([Intel XE#1201]) -> [SKIP][468] ([Intel XE#1201] / [Intel XE#1489]) +1 other test skip
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg2-set2: [SKIP][469] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][470] ([Intel XE#1489]) +2 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_psr2_sf@cursor-plane-update-sf.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][471] ([Intel XE#1489]) -> [SKIP][472] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][473] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][474] ([Intel XE#1201] / [Intel XE#2351])
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][475] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][476] ([Intel XE#1201])
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-dg2-set2: [SKIP][477] ([Intel XE#1201]) -> [SKIP][478] ([Intel XE#929]) +2 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-plane-move.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_psr@fbc-pr-cursor-plane-move.html
- shard-lnl: [SKIP][479] ([Intel XE#2351]) -> [SKIP][480] ([Intel XE#1406]) +4 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_psr@fbc-pr-cursor-plane-move.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-5/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2-set2: [SKIP][481] ([Intel XE#1201]) -> [SKIP][482] ([Intel XE#1201] / [Intel XE#929]) +6 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_psr@fbc-pr-dpms.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg2-set2: [SKIP][483] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][484] ([Intel XE#1201] / [Intel XE#2351])
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_psr@fbc-pr-no-drrs.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_psr@fbc-pr-no-drrs.html
- shard-lnl: [SKIP][485] ([Intel XE#1406]) -> [SKIP][486] ([Intel XE#2351]) +4 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@kms_psr@fbc-pr-no-drrs.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][487] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][488] ([Intel XE#929]) +2 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: [SKIP][489] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][490] ([Intel XE#1201]) +7 other tests skip
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_psr@fbc-psr2-dpms.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-dg2-set2: [SKIP][491] ([Intel XE#929]) -> [SKIP][492] ([Intel XE#1201]) +3 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_psr@fbc-psr2-no-drrs.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-dg2-set2: [SKIP][493] ([Intel XE#929]) -> [SKIP][494] ([Intel XE#1201] / [Intel XE#929]) +4 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_psr@pr-sprite-plane-move.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][495] ([Intel XE#1201]) -> [SKIP][496] ([Intel XE#1149] / [Intel XE#1201])
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][497] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][498] ([Intel XE#1201])
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rmfb@close-fd:
- shard-dg2-set2: [SKIP][499] ([Intel XE#1201] / [i915#2575]) -> [FAIL][500] ([Intel XE#294])
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_rmfb@close-fd.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@kms_rmfb@close-fd.html
- shard-lnl: [SKIP][501] ([Intel XE#2423]) -> [FAIL][502] ([Intel XE#294])
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_rmfb@close-fd.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-1/igt@kms_rmfb@close-fd.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][503] ([Intel XE#1201] / [i915#2575]) -> [SKIP][504] ([Intel XE#1201] / [Intel XE#327])
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html
- shard-lnl: [SKIP][505] ([Intel XE#2423]) -> [SKIP][506] ([Intel XE#1437])
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@kms_rotation_crc@bad-tiling.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-180:
- shard-dg2-set2: [SKIP][507] ([Intel XE#1201] / [i915#2575]) -> [SKIP][508] ([Intel XE#1201] / [Intel XE#2423] / [i915#2575])
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-180.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][509] ([Intel XE#1201] / [i915#2575]) -> [SKIP][510] ([Intel XE#1127] / [Intel XE#1201]) +1 other test skip
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][511] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][512] ([Intel XE#1201] / [i915#2575]) +1 other test skip
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][513] ([Intel XE#327]) -> [SKIP][514] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: [SKIP][515] ([Intel XE#2423]) -> [SKIP][516] ([Intel XE#1127]) +1 other test skip
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][517] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][518] ([Intel XE#327])
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-lnl: [SKIP][519] ([Intel XE#2423]) -> [SKIP][520] ([Intel XE#1435])
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][521] ([Intel XE#1729]) -> [SKIP][522] ([Intel XE#1201] / [i915#2575])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: [SKIP][523] ([Intel XE#362]) -> [SKIP][524] ([Intel XE#2423])
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: [SKIP][525] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][526] ([Intel XE#1201] / [i915#2575])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: [SKIP][527] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][528] ([Intel XE#455]) +5 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@kms_vrr@flipline.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2-set2: [SKIP][529] ([Intel XE#756]) -> [SKIP][530] ([Intel XE#1201] / [i915#2575])
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@kms_writeback@writeback-invalid-parameters.html
- shard-lnl: [SKIP][531] ([Intel XE#756]) -> [SKIP][532] ([Intel XE#2423])
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@kms_writeback@writeback-invalid-parameters.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2-set2: [SKIP][533] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][534] ([Intel XE#1201] / [i915#2575])
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-dg2-set2: [SKIP][535] ([Intel XE#1130] / [Intel XE#1201]) -> [FAIL][536] ([Intel XE#1050])
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@xe_compute@ccs-mode-compute-kernel.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@xe_compute@ccs-mode-compute-kernel.html
- shard-lnl: [SKIP][537] ([Intel XE#1130]) -> [SKIP][538] ([Intel XE#1447])
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@xe_compute@ccs-mode-compute-kernel.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][539] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][540] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-433/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][541] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][542] ([Intel XE#1123])
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_create@create-big-vram:
- shard-lnl: [SKIP][543] ([Intel XE#1062]) -> [SKIP][544] ([Intel XE#1130])
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@xe_create@create-big-vram.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@xe_create@create-big-vram.html
* igt@xe_create@multigpu-create-massive-size:
- shard-dg2-set2: [SKIP][545] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][546] ([Intel XE#1130] / [Intel XE#1201])
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@xe_create@multigpu-create-massive-size.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_evict@evict-large-multi-vm:
- shard-lnl: [SKIP][547] ([Intel XE#688]) -> [SKIP][548] ([Intel XE#1130]) +7 other tests skip
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-7/igt@xe_evict@evict-large-multi-vm.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-2/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [INCOMPLETE][549] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][550] ([Intel XE#1473] / [Intel XE#392])
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-463/igt@xe_evict@evict-mixed-threads-large.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_evict@evict-threads-small-multi-vm:
- shard-lnl: [SKIP][551] ([Intel XE#1130]) -> [SKIP][552] ([Intel XE#688]) +2 other tests skip
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@xe_evict@evict-threads-small-multi-vm.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@xe_evict@evict-threads-small-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-lnl: [SKIP][553] ([Intel XE#1130]) -> [SKIP][554] ([Intel XE#1392]) +3 other tests skip
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-basic.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-lnl: [SKIP][555] ([Intel XE#1392]) -> [SKIP][556] ([Intel XE#1130]) +5 other tests skip
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@once-basic-imm:
- shard-dg2-set2: [SKIP][557] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][558] ([Intel XE#288]) +9 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@xe_exec_fault_mode@once-basic-imm.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@xe_exec_fault_mode@once-basic-imm.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race-imm:
- shard-dg2-set2: [SKIP][559] ([Intel XE#288]) -> [SKIP][560] ([Intel XE#1130] / [Intel XE#1201])
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race-imm.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: [SKIP][561] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][562] ([Intel XE#1201] / [Intel XE#288]) +13 other tests skip
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
- shard-dg2-set2: [SKIP][563] ([Intel XE#288]) -> [SKIP][564] ([Intel XE#1201] / [Intel XE#288]) +16 other tests skip
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-435/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][565] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][566] ([Intel XE#1130] / [Intel XE#1201]) +21 other tests skip
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [DMESG-FAIL][567] -> [FAIL][568] ([Intel XE#2136])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@xe_module_load@many-reload.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [DMESG-FAIL][569] ([Intel XE#2019]) -> [FAIL][570] ([Intel XE#2136])
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-434/igt@xe_module_load@reload.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@xe_module_load@reload.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [FAIL][571] ([Intel XE#1204]) -> [FAIL][572] ([Intel XE#1204] / [Intel XE#2136])
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@xe_module_load@reload-no-display.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@xe_module_load@reload-no-display.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][573] ([Intel XE#1201] / [Intel XE#977]) -> [SKIP][574] ([Intel XE#977])
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: [SKIP][575] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][576] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366])
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html
- shard-lnl: [SKIP][577] ([Intel XE#1130]) -> [SKIP][578] ([Intel XE#2284] / [Intel XE#366])
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@xe_pm@d3cold-basic-exec.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][579] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][580] ([Intel XE#1130] / [Intel XE#1201])
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@xe_pm@d3cold-mmap-system.html
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@xe_pm@d3cold-mmap-system.html
- shard-lnl: [SKIP][581] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][582] ([Intel XE#1130])
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-2/igt@xe_pm@d3cold-mmap-system.html
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-8/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][583] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][584] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366])
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-466/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-basic:
- shard-lnl: [SKIP][585] ([Intel XE#1130]) -> [SKIP][586] ([Intel XE#584])
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@xe_pm@s3-basic.html
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][587] ([Intel XE#1162] / [Intel XE#1941]) -> [SKIP][588] ([Intel XE#1130] / [Intel XE#1201])
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@xe_pm@s3-vm-bind-unbind-all.html
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@xe_pm@s3-vm-bind-unbind-all.html
- shard-lnl: [SKIP][589] ([Intel XE#584]) -> [SKIP][590] ([Intel XE#1130]) +1 other test skip
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-5/igt@xe_pm@s3-vm-bind-unbind-all.html
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-4/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][591] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][592] ([Intel XE#2284] / [Intel XE#366])
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-433/igt@xe_pm@s4-d3cold-basic-exec.html
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm@s4-exec-after:
- shard-dg2-set2: [DMESG-WARN][593] ([Intel XE#2019]) -> [SKIP][594] ([Intel XE#1130] / [Intel XE#1201])
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-436/igt@xe_pm@s4-exec-after.html
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: [SKIP][595] ([Intel XE#1201] / [Intel XE#579]) -> [SKIP][596] ([Intel XE#579])
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-432/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [SKIP][597] ([Intel XE#1130]) -> [FAIL][598] ([Intel XE#958])
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: [SKIP][599] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][600] ([Intel XE#1201] / [Intel XE#944])
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-435/igt@xe_query@multigpu-query-config.html
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-436/igt@xe_query@multigpu-query-config.html
- shard-lnl: [SKIP][601] ([Intel XE#1130]) -> [SKIP][602] ([Intel XE#944])
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-8/igt@xe_query@multigpu-query-config.html
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: [SKIP][603] ([Intel XE#944]) -> [SKIP][604] ([Intel XE#1130] / [Intel XE#1201])
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-dg2-432/igt@xe_query@multigpu-query-mem-usage.html
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html
- shard-lnl: [SKIP][605] ([Intel XE#944]) -> [SKIP][606] ([Intel XE#1130])
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7942/shard-lnl-4/igt@xe_query@multigpu-query-mem-usage.html
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/shard-lnl-7/igt@xe_query@multigpu-query-mem-usage.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[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#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[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#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#1924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1924
[Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
[Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
[Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028
[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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2180]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2180
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2262]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2262
[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#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
[Intel XE#2343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2343
[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#2366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2366
[Intel XE#2419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2419
[Intel XE#2421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2421
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
[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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[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#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[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#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_7942 -> IGTPW_11497
* Linux: xe-1684-3a93d4a1f4872fbdfe43e9b7f1a7dfd9236a642d -> xe-1691-acd846e309e206a4dbc83e4b857b6604aa0741af
IGTPW_11497: 11497
IGT_7942: 0f02dc176959e6296866b1bafd3982e277a5e44b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1684-3a93d4a1f4872fbdfe43e9b7f1a7dfd9236a642d: 3a93d4a1f4872fbdfe43e9b7f1a7dfd9236a642d
xe-1691-acd846e309e206a4dbc83e4b857b6604aa0741af: acd846e309e206a4dbc83e4b857b6604aa0741af
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11497/index.html
[-- Attachment #2: Type: text/html, Size: 191063 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence
2024-07-30 16:42 ` [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence Marcin Bernatowicz
@ 2024-07-30 19:51 ` Cavitt, Jonathan
2024-07-31 18:00 ` Kamil Konieczny
1 sibling, 0 replies; 16+ messages in thread
From: Cavitt, Jonathan @ 2024-07-30 19:51 UTC (permalink / raw)
To: Marcin Bernatowicz, igt-dev@lists.freedesktop.org
Cc: Tauro, Riana, Vivi, Rodrigo, kamil.konieczny@linux.intel.com,
Laguna, Lukasz, Kolakowski, Jakub1
-----Original Message-----
From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Marcin Bernatowicz
Sent: Tuesday, July 30, 2024 9:43 AM
To: igt-dev@lists.freedesktop.org
Cc: Tauro, Riana <riana.tauro@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>; kamil.konieczny@linux.intel.com; Laguna, Lukasz <lukasz.laguna@intel.com>; Kolakowski, Jakub1 <jakub1.kolakowski@intel.com>
Subject: [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence
>
> Introduce xe_sysfs_gt_has_attr to verify if a specified attribute
> exists within the sysfs gt directory of a device.
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
LGTM.
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
-Jonathan Cavitt
> ---
> lib/igt_sysfs.c | 25 +++++++++++++++++++++++++
> lib/igt_sysfs.h | 1 +
> 2 files changed, 26 insertions(+)
>
> diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
> index 550472d81..bcfd9fad1 100644
> --- a/lib/igt_sysfs.c
> +++ b/lib/igt_sysfs.c
> @@ -265,6 +265,31 @@ int xe_sysfs_gt_open(int xe_device, int gt)
> return open(path, O_RDONLY);
> }
>
> +/**
> + * xe_sysfs_gt_has_attr:
> + * @xe_device: fd of the device
> + * @gt: gt number
> + * @attr: attr inside sysfs gt dir that needs to be checked for existence
> + *
> + * This checks if specified attr exists in device sysfs gt directory.
> + *
> + * Returns:
> + * true if attr exists in sysfs, false otherwise.
> + */
> +bool xe_sysfs_gt_has_attr(int xe_device, int gt, const char *attr)
> +{
> + bool has_attr;
> + int gt_fd;
> +
> + gt_fd = xe_sysfs_gt_open(xe_device, gt);
> + if (gt_fd < 0)
> + return false;
> +
> + has_attr = igt_sysfs_has_attr(gt_fd, attr);
> + close(gt_fd);
> + return has_attr;
> +}
> +
> static const char *xe_engine_class_to_str(__u16 class)
> {
> static const char * const str[] = {
> diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h
> index 5d050c786..b0288fe36 100644
> --- a/lib/igt_sysfs.h
> +++ b/lib/igt_sysfs.h
> @@ -168,6 +168,7 @@ void igt_sysfs_engines(int xe, int engines, const char **property,
>
> char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen);
> int xe_sysfs_gt_open(int xe_device, int gt);
> +bool xe_sysfs_gt_has_attr(int xe_device, int gt, const char *attr);
> char *xe_sysfs_tile_path(int xe_device, int tile, char *path, int pathlen);
> int xe_sysfs_tile_open(int xe_device, int tile);
> int xe_sysfs_get_num_tiles(int xe_device);
> --
> 2.31.1
>
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' attribute is missing
2024-07-30 16:42 ` [PATCH i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' attribute is missing Marcin Bernatowicz
@ 2024-07-30 19:51 ` Cavitt, Jonathan
0 siblings, 0 replies; 16+ messages in thread
From: Cavitt, Jonathan @ 2024-07-30 19:51 UTC (permalink / raw)
To: Marcin Bernatowicz, igt-dev@lists.freedesktop.org
Cc: Tauro, Riana, Vivi, Rodrigo, kamil.konieczny@linux.intel.com,
Laguna, Lukasz, Kolakowski, Jakub1, Cavitt, Jonathan
-----Original Message-----
From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Marcin Bernatowicz
Sent: Tuesday, July 30, 2024 9:43 AM
To: igt-dev@lists.freedesktop.org
Cc: Tauro, Riana <riana.tauro@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>; kamil.konieczny@linux.intel.com; Laguna, Lukasz <lukasz.laguna@intel.com>; Kolakowski, Jakub1 <jakub1.kolakowski@intel.com>
Subject: [PATCH i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' attribute is missing
>
> Add igt_require check for 'freq0' attribute to skip frequency tests
> on VF devices where this attribute is not present, preventing test
> failure.
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
LGTM.
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
-Jonathan Cavitt
> ---
> tests/intel/xe_gt_freq.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
> index 93ebb5ed0..0a0efeff5 100644
> --- a/tests/intel/xe_gt_freq.c
> +++ b/tests/intel/xe_gt_freq.c
> @@ -414,6 +414,7 @@ igt_main
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
>
> + igt_require(xe_sysfs_gt_has_attr(fd, 0, "freq0"));
> /* The defaults are the same. Stashing the gt0 is enough */
> stash_min = get_freq(fd, 0, "min");
> stash_max = get_freq(fd, 0, "max");
> --
> 2.31.1
>
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' attribute is missing
2024-07-30 16:42 ` [PATCH i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' " Marcin Bernatowicz
@ 2024-07-30 19:54 ` Cavitt, Jonathan
0 siblings, 0 replies; 16+ messages in thread
From: Cavitt, Jonathan @ 2024-07-30 19:54 UTC (permalink / raw)
To: Marcin Bernatowicz, igt-dev@lists.freedesktop.org
Cc: Tauro, Riana, Vivi, Rodrigo, kamil.konieczny@linux.intel.com,
Laguna, Lukasz, Kolakowski, Jakub1, Cavitt, Jonathan
-----Original Message-----
From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Marcin Bernatowicz
Sent: Tuesday, July 30, 2024 9:43 AM
To: igt-dev@lists.freedesktop.org
Cc: Tauro, Riana <riana.tauro@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>; kamil.konieczny@linux.intel.com; Laguna, Lukasz <lukasz.laguna@intel.com>; Kolakowski, Jakub1 <jakub1.kolakowski@intel.com>
Subject: [PATCH i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' attribute is missing
>
> Add an igt_require check for 'gtidle' attribute to skip residency
> tests on VF devices where this attribute is not present, preventing
> test failure.
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
LGTM.
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
-Jonathan Cavitt
> ---
> tests/intel/xe_pm_residency.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
> index 51735d887..dda4d56fe 100644
> --- a/tests/intel/xe_pm_residency.c
> +++ b/tests/intel/xe_pm_residency.c
> @@ -317,7 +317,9 @@ igt_main
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> +
> igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
> + igt_require(xe_sysfs_gt_has_attr(fd, 0, "gtidle"));
> }
>
> igt_describe("Validate GT C6 on idle");
> --
> 2.31.1
>
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence
2024-07-30 16:42 ` [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence Marcin Bernatowicz
2024-07-30 19:51 ` Cavitt, Jonathan
@ 2024-07-31 18:00 ` Kamil Konieczny
2024-08-01 9:10 ` Bernatowicz, Marcin
1 sibling, 1 reply; 16+ messages in thread
From: Kamil Konieczny @ 2024-07-31 18:00 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, riana.tauro, rodrigo.vivi, lukasz.laguna,
jakub1.kolakowski
Hi Marcin,
On 2024-07-30 at 18:42:30 +0200, Marcin Bernatowicz wrote:
> Introduce xe_sysfs_gt_has_attr to verify if a specified attribute
> exists within the sysfs gt directory of a device.
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> ---
> lib/igt_sysfs.c | 25 +++++++++++++++++++++++++
> lib/igt_sysfs.h | 1 +
> 2 files changed, 26 insertions(+)
>
> diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
> index 550472d81..bcfd9fad1 100644
> --- a/lib/igt_sysfs.c
> +++ b/lib/igt_sysfs.c
> @@ -265,6 +265,31 @@ int xe_sysfs_gt_open(int xe_device, int gt)
> return open(path, O_RDONLY);
> }
>
> +/**
> + * xe_sysfs_gt_has_attr:
> + * @xe_device: fd of the device
> + * @gt: gt number
> + * @attr: attr inside sysfs gt dir that needs to be checked for existence
> + *
> + * This checks if specified attr exists in device sysfs gt directory.
> + *
> + * Returns:
> + * true if attr exists in sysfs, false otherwise.
> + */
> +bool xe_sysfs_gt_has_attr(int xe_device, int gt, const char *attr)
> +{
> + bool has_attr;
> + int gt_fd;
> +
> + gt_fd = xe_sysfs_gt_open(xe_device, gt);
> + if (gt_fd < 0)
> + return false;
> +
> + has_attr = igt_sysfs_has_attr(gt_fd, attr);
Did you check that this will not assert on some unexpected
boundary conditions?
> + close(gt_fd);
Add newline before return here, with this:
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> + return has_attr;
> +}
> +
> static const char *xe_engine_class_to_str(__u16 class)
> {
> static const char * const str[] = {
> diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h
> index 5d050c786..b0288fe36 100644
> --- a/lib/igt_sysfs.h
> +++ b/lib/igt_sysfs.h
> @@ -168,6 +168,7 @@ void igt_sysfs_engines(int xe, int engines, const char **property,
>
> char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen);
> int xe_sysfs_gt_open(int xe_device, int gt);
> +bool xe_sysfs_gt_has_attr(int xe_device, int gt, const char *attr);
> char *xe_sysfs_tile_path(int xe_device, int tile, char *path, int pathlen);
> int xe_sysfs_tile_open(int xe_device, int tile);
> int xe_sysfs_get_num_tiles(int xe_device);
> --
> 2.31.1
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence
2024-07-31 18:00 ` Kamil Konieczny
@ 2024-08-01 9:10 ` Bernatowicz, Marcin
0 siblings, 0 replies; 16+ messages in thread
From: Bernatowicz, Marcin @ 2024-08-01 9:10 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, riana.tauro, rodrigo.vivi,
lukasz.laguna, jakub1.kolakowski
On 7/31/2024 8:00 PM, Kamil Konieczny wrote:
> Hi Marcin,
> On 2024-07-30 at 18:42:30 +0200, Marcin Bernatowicz wrote:
>> Introduce xe_sysfs_gt_has_attr to verify if a specified attribute
>> exists within the sysfs gt directory of a device.
>>
>> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
>> ---
>> lib/igt_sysfs.c | 25 +++++++++++++++++++++++++
>> lib/igt_sysfs.h | 1 +
>> 2 files changed, 26 insertions(+)
>>
>> diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
>> index 550472d81..bcfd9fad1 100644
>> --- a/lib/igt_sysfs.c
>> +++ b/lib/igt_sysfs.c
>> @@ -265,6 +265,31 @@ int xe_sysfs_gt_open(int xe_device, int gt)
>> return open(path, O_RDONLY);
>> }
>>
>> +/**
>> + * xe_sysfs_gt_has_attr:
>> + * @xe_device: fd of the device
>> + * @gt: gt number
>> + * @attr: attr inside sysfs gt dir that needs to be checked for existence
>> + *
>> + * This checks if specified attr exists in device sysfs gt directory.
>> + *
>> + * Returns:
>> + * true if attr exists in sysfs, false otherwise.
>> + */
>> +bool xe_sysfs_gt_has_attr(int xe_device, int gt, const char *attr)
>> +{
>> + bool has_attr;
>> + int gt_fd;
>> +
>> + gt_fd = xe_sysfs_gt_open(xe_device, gt);
>> + if (gt_fd < 0)
>> + return false;
>> +
>> + has_attr = igt_sysfs_has_attr(gt_fd, attr);
>
> Did you check that this will not assert on some unexpected
> boundary conditions?
igt_sysfs_has_attr does not assert
>
>> + close(gt_fd);
>
> Add newline before return here, with this:
Ok
>
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
>> + return has_attr;
>> +}
>> +
>> static const char *xe_engine_class_to_str(__u16 class)
>> {
>> static const char * const str[] = {
>> diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h
>> index 5d050c786..b0288fe36 100644
>> --- a/lib/igt_sysfs.h
>> +++ b/lib/igt_sysfs.h
>> @@ -168,6 +168,7 @@ void igt_sysfs_engines(int xe, int engines, const char **property,
>>
>> char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen);
>> int xe_sysfs_gt_open(int xe_device, int gt);
>> +bool xe_sysfs_gt_has_attr(int xe_device, int gt, const char *attr);
>> char *xe_sysfs_tile_path(int xe_device, int tile, char *path, int pathlen);
>> int xe_sysfs_tile_open(int xe_device, int tile);
>> int xe_sysfs_get_num_tiles(int xe_device);
>> --
>> 2.31.1
>>
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v2 i-g-t 0/3] Add sysfs node checks for gt_freq and pm_residency tests
2024-07-30 16:42 [PATCH i-g-t 0/3] Add sysfs attribute checks for gt_freq and pm_residency tests Marcin Bernatowicz
` (5 preceding siblings ...)
2024-07-30 18:39 ` ✗ CI.xeFULL: " Patchwork
@ 2024-08-01 10:27 ` Marcin Bernatowicz
2024-08-01 10:27 ` [PATCH v2 i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_node to check node existence Marcin Bernatowicz
` (2 more replies)
6 siblings, 3 replies; 16+ messages in thread
From: Marcin Bernatowicz @ 2024-08-01 10:27 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, rodrigo.vivi, kamil.konieczny, jonathan.cavitt,
lukasz.laguna, jakub1.kolakowski
This patch series introduces necessary node checks to ensure that tests
are only executed when specific sysfs nodes are present. This prevents
test failures on Virtual Function (VF) devices where these nodes might
be missing.
v2: Use "node" instead of "attribute" for more accuracy
Marcin Bernatowicz (3):
lib/igt_sysfs: Add xe_sysfs_gt_has_node to check node existence
tests/intel/xe_gt_freq: Skip test if 'freq0' node is missing
tests/intel/xe_pm_residency: Skip test if 'gtidle' node is missing
lib/igt_sysfs.c | 26 ++++++++++++++++++++++++++
lib/igt_sysfs.h | 1 +
tests/intel/xe_gt_freq.c | 1 +
tests/intel/xe_pm_residency.c | 2 ++
4 files changed, 30 insertions(+)
--
2.31.1
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v2 i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_node to check node existence
2024-08-01 10:27 ` [PATCH v2 i-g-t 0/3] Add sysfs node " Marcin Bernatowicz
@ 2024-08-01 10:27 ` Marcin Bernatowicz
2024-08-01 10:27 ` [PATCH v2 i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' node is missing Marcin Bernatowicz
2024-08-01 10:27 ` [PATCH v2 i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' " Marcin Bernatowicz
2 siblings, 0 replies; 16+ messages in thread
From: Marcin Bernatowicz @ 2024-08-01 10:27 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, rodrigo.vivi, kamil.konieczny, jonathan.cavitt,
lukasz.laguna, jakub1.kolakowski
Introduce xe_sysfs_gt_has_node to verify if a specified node
exists within the sysfs gt directory of a device.
v2: Add newline before return statement (Kamil)
Use "node" instead of "attribute" for more accuracy
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
lib/igt_sysfs.c | 26 ++++++++++++++++++++++++++
lib/igt_sysfs.h | 1 +
2 files changed, 27 insertions(+)
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index 550472d81..12abc4f7e 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -265,6 +265,32 @@ int xe_sysfs_gt_open(int xe_device, int gt)
return open(path, O_RDONLY);
}
+/**
+ * xe_sysfs_gt_has_attr:
+ * @xe_device: fd of the device
+ * @gt: gt number
+ * @node: node inside sysfs gt dir that needs to be checked for existence
+ *
+ * This checks if specified node exists in device sysfs gt directory.
+ *
+ * Returns:
+ * true if node exists in sysfs, false otherwise.
+ */
+bool xe_sysfs_gt_has_node(int xe_device, int gt, const char *node)
+{
+ bool has_node;
+ int gt_fd;
+
+ gt_fd = xe_sysfs_gt_open(xe_device, gt);
+ if (gt_fd < 0)
+ return false;
+
+ has_node = igt_sysfs_has_attr(gt_fd, node);
+ close(gt_fd);
+
+ return has_node;
+}
+
static const char *xe_engine_class_to_str(__u16 class)
{
static const char * const str[] = {
diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h
index 5d050c786..27031a015 100644
--- a/lib/igt_sysfs.h
+++ b/lib/igt_sysfs.h
@@ -168,6 +168,7 @@ void igt_sysfs_engines(int xe, int engines, const char **property,
char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen);
int xe_sysfs_gt_open(int xe_device, int gt);
+bool xe_sysfs_gt_has_node(int xe_device, int gt, const char *node);
char *xe_sysfs_tile_path(int xe_device, int tile, char *path, int pathlen);
int xe_sysfs_tile_open(int xe_device, int tile);
int xe_sysfs_get_num_tiles(int xe_device);
--
2.31.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v2 i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' node is missing
2024-08-01 10:27 ` [PATCH v2 i-g-t 0/3] Add sysfs node " Marcin Bernatowicz
2024-08-01 10:27 ` [PATCH v2 i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_node to check node existence Marcin Bernatowicz
@ 2024-08-01 10:27 ` Marcin Bernatowicz
2024-08-01 10:27 ` [PATCH v2 i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' " Marcin Bernatowicz
2 siblings, 0 replies; 16+ messages in thread
From: Marcin Bernatowicz @ 2024-08-01 10:27 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, rodrigo.vivi, kamil.konieczny, jonathan.cavitt,
lukasz.laguna, jakub1.kolakowski
Add igt_require check for 'freq0' node to skip frequency tests
on VF devices where this node is not present, preventing test
failure.
v2: Use "node" instead of "attribute" for more accuracy
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
tests/intel/xe_gt_freq.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
index c9d59508b..397007ebe 100644
--- a/tests/intel/xe_gt_freq.c
+++ b/tests/intel/xe_gt_freq.c
@@ -437,6 +437,7 @@ igt_main
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
+ igt_require(xe_sysfs_gt_has_node(fd, 0, "freq0"));
/* The defaults are the same. Stashing the gt0 is enough */
stash_min = get_freq(fd, 0, "min");
stash_max = get_freq(fd, 0, "max");
--
2.31.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v2 i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' node is missing
2024-08-01 10:27 ` [PATCH v2 i-g-t 0/3] Add sysfs node " Marcin Bernatowicz
2024-08-01 10:27 ` [PATCH v2 i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_node to check node existence Marcin Bernatowicz
2024-08-01 10:27 ` [PATCH v2 i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' node is missing Marcin Bernatowicz
@ 2024-08-01 10:27 ` Marcin Bernatowicz
2 siblings, 0 replies; 16+ messages in thread
From: Marcin Bernatowicz @ 2024-08-01 10:27 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, rodrigo.vivi, kamil.konieczny, jonathan.cavitt,
lukasz.laguna, jakub1.kolakowski
Add an igt_require check for 'gtidle' node to skip residency
tests on VF devices where this node is not present, preventing
test failure.
v2: Use "node" instead of "attribute" for more accuracy
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
tests/intel/xe_pm_residency.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
index 51735d887..9fec3b41a 100644
--- a/tests/intel/xe_pm_residency.c
+++ b/tests/intel/xe_pm_residency.c
@@ -317,7 +317,9 @@ igt_main
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
+
igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
+ igt_require(xe_sysfs_gt_has_node(fd, 0, "gtidle"));
}
igt_describe("Validate GT C6 on idle");
--
2.31.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-08-01 10:28 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-30 16:42 [PATCH i-g-t 0/3] Add sysfs attribute checks for gt_freq and pm_residency tests Marcin Bernatowicz
2024-07-30 16:42 ` [PATCH i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_attr to check attribute existence Marcin Bernatowicz
2024-07-30 19:51 ` Cavitt, Jonathan
2024-07-31 18:00 ` Kamil Konieczny
2024-08-01 9:10 ` Bernatowicz, Marcin
2024-07-30 16:42 ` [PATCH i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' attribute is missing Marcin Bernatowicz
2024-07-30 19:51 ` Cavitt, Jonathan
2024-07-30 16:42 ` [PATCH i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' " Marcin Bernatowicz
2024-07-30 19:54 ` Cavitt, Jonathan
2024-07-30 17:23 ` ✓ CI.xeBAT: success for Add sysfs attribute checks for gt_freq and pm_residency tests Patchwork
2024-07-30 17:36 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-07-30 18:39 ` ✗ CI.xeFULL: " Patchwork
2024-08-01 10:27 ` [PATCH v2 i-g-t 0/3] Add sysfs node " Marcin Bernatowicz
2024-08-01 10:27 ` [PATCH v2 i-g-t 1/3] lib/igt_sysfs: Add xe_sysfs_gt_has_node to check node existence Marcin Bernatowicz
2024-08-01 10:27 ` [PATCH v2 i-g-t 2/3] tests/intel/xe_gt_freq: Skip test if 'freq0' node is missing Marcin Bernatowicz
2024-08-01 10:27 ` [PATCH v2 i-g-t 3/3] tests/intel/xe_pm_residency: Skip test if 'gtidle' " Marcin Bernatowicz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox