* [PATCH i-g-t 1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info
@ 2024-12-10 2:08 Ashutosh Dixit
2024-12-10 2:08 ` [PATCH i-g-t 2/3] Revert "tests/xe_oa: Drop TestOa from metric_set()" Ashutosh Dixit
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Ashutosh Dixit @ 2024-12-10 2:08 UTC (permalink / raw)
To: igt-dev; +Cc: Umesh Nerlige Ramappa
In order to avoid failures on unsupported Xe1 platforms, move Xe2+ check
before init_sys_info.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3645
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
tests/intel/xe_oa.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index 8a88945a2b..9e7c2ae1e6 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -4855,14 +4855,14 @@ igt_main
devid = intel_get_drm_devid(drm_fd);
sysfs = igt_sysfs_open(drm_fd);
+ /* Currently only run on Xe2+ */
+ igt_require(intel_graphics_ver(devid) >= IP_VER(20, 0));
+
igt_require(init_sys_info());
write_u64_file("/proc/sys/dev/xe/observation_paranoid", 1);
render_copy = igt_get_render_copyfunc(devid);
-
- /* Currently only run on Xe2+ */
- igt_require(intel_graphics_ver(devid) >= IP_VER(20, 0));
}
igt_subtest("non-system-wide-paranoid")
--
2.47.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH i-g-t 2/3] Revert "tests/xe_oa: Drop TestOa from metric_set()"
2024-12-10 2:08 [PATCH i-g-t 1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info Ashutosh Dixit
@ 2024-12-10 2:08 ` Ashutosh Dixit
2024-12-10 11:14 ` Kamil Konieczny
2024-12-10 2:08 ` [PATCH i-g-t 3/3] tests/intel/xe_oa: Use buf->bo_size for xe_bo_map Ashutosh Dixit
` (4 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Ashutosh Dixit @ 2024-12-10 2:08 UTC (permalink / raw)
To: igt-dev; +Cc: Umesh Nerlige Ramappa
This reverts commit d226604a63fbd5c37c9f5d60b6fc23acffc49f0a.
Re-instate TestOa metric set. IGT needs to work with TestOa since it has
special properties which help with OA data validation. Remaining parts of
d226604a63fb were already reverted in 4942fc57c20f ("lib/xe/oa: Re-instate
TestOa metric sets in LNL/BMG XML's").
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
tests/intel/xe_oa.c | 23 +++++++++--------------
1 file changed, 9 insertions(+), 14 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index 9e7c2ae1e6..c660720ea0 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -310,20 +310,15 @@ static struct intel_xe_perf_metric_set *metric_set(const struct drm_xe_engine_cl
struct intel_xe_perf_metric_set *metric_set_iter;
struct intel_xe_perf_metric_set *test_set = NULL;
- switch (hwe->engine_class) {
- case DRM_XE_ENGINE_CLASS_RENDER:
- test_set_name = "RenderBasic";
- break;
- case DRM_XE_ENGINE_CLASS_COMPUTE:
- test_set_name = "ComputeBasic";
- break;
- case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
- case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
- if (HAS_OAM(devid))
- test_set_name = "MediaSet1";
- default:
- igt_assert(!"missing");
- }
+ if (hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER ||
+ hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE)
+ test_set_name = "TestOa";
+ else if ((hwe->engine_class == DRM_XE_ENGINE_CLASS_VIDEO_DECODE ||
+ hwe->engine_class == DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE) &&
+ HAS_OAM(devid))
+ test_set_name = "MediaSet1";
+ else
+ igt_assert(!"reached");
igt_list_for_each_entry(metric_set_iter, &intel_xe_perf->metric_sets, link) {
if (strcmp(metric_set_iter->symbol_name, test_set_name) == 0) {
--
2.47.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH i-g-t 3/3] tests/intel/xe_oa: Use buf->bo_size for xe_bo_map
2024-12-10 2:08 [PATCH i-g-t 1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info Ashutosh Dixit
2024-12-10 2:08 ` [PATCH i-g-t 2/3] Revert "tests/xe_oa: Drop TestOa from metric_set()" Ashutosh Dixit
@ 2024-12-10 2:08 ` Ashutosh Dixit
2024-12-10 2:53 ` ✗ i915.CI.BAT: failure for series starting with [i-g-t,1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Ashutosh Dixit @ 2024-12-10 2:08 UTC (permalink / raw)
To: igt-dev; +Cc: Umesh Nerlige Ramappa
From: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Doing so fixes crashes on ATSM.
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
tests/intel/xe_oa.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index c660720ea0..4483a5a19c 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -742,7 +742,7 @@ static void *buf_map(int fd, struct intel_buf *buf, bool write)
void *p;
if (is_xe_device(fd)) {
- buf->ptr = xe_bo_map(fd, buf->handle, buf->surface[0].size);
+ buf->ptr = xe_bo_map(fd, buf->handle, buf->bo_size);
p = buf->ptr;
} else {
if (gem_has_llc(fd))
--
2.47.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✗ i915.CI.BAT: failure for series starting with [i-g-t,1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info
2024-12-10 2:08 [PATCH i-g-t 1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info Ashutosh Dixit
2024-12-10 2:08 ` [PATCH i-g-t 2/3] Revert "tests/xe_oa: Drop TestOa from metric_set()" Ashutosh Dixit
2024-12-10 2:08 ` [PATCH i-g-t 3/3] tests/intel/xe_oa: Use buf->bo_size for xe_bo_map Ashutosh Dixit
@ 2024-12-10 2:53 ` Patchwork
2024-12-10 3:08 ` ✓ Xe.CI.BAT: success " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-10 2:53 UTC (permalink / raw)
To: Ashutosh Dixit; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info
URL : https://patchwork.freedesktop.org/series/142321/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8145 -> IGTPW_12281
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12281 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12281, 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_12281/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12281:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1:
- fi-cfl-8109u: [PASS][1] -> [DMESG-WARN][2] +2 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/fi-cfl-8109u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/fi-cfl-8109u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
#### Warnings ####
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-dg2-11: [SKIP][3] ([i915#9197]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc.html
Known issues
------------
Here are the changes found in IGTPW_12281 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [PASS][5] -> [FAIL][6] ([i915#12903])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
- bat-arls-5: [PASS][7] -> [DMESG-WARN][8] ([i915#4423])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-arls-5/igt@i915_pm_rpm@module-reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/bat-arls-5/igt@i915_pm_rpm@module-reload.html
- bat-dg1-7: [PASS][9] -> [FAIL][10] ([i915#12903])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
- fi-cfl-guc: [PASS][11] -> [FAIL][12] ([i915#12903])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- fi-cfl-8109u: [PASS][13] -> [DMESG-WARN][14] ([i915#12914])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/fi-cfl-8109u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/fi-cfl-8109u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: [PASS][15] -> [SKIP][16] ([i915#9197])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-twl-1: [DMESG-WARN][17] ([i915#1982]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-twl-1/igt@i915_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/bat-twl-1/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [FAIL][19] ([i915#12903]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@kms_flip@basic-flip-vs-dpms@d-edp1:
- {bat-mtlp-9}: [DMESG-WARN][21] -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@d-edp1.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@d-edp1.html
* igt@kms_flip@basic-flip-vs-modeset:
- fi-kbl-7567u: [DMESG-WARN][23] ([i915#12926]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_flip@basic-flip-vs-modeset@a-dp1:
- fi-kbl-7567u: [DMESG-WARN][25] -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html
* igt@kms_pipe_crc_basic@read-crc:
- {bat-mtlp-9}: [FAIL][27] -> [PASS][28] +1 other test pass
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-mtlp-9/igt@kms_pipe_crc_basic@read-crc.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/bat-mtlp-9/igt@kms_pipe_crc_basic@read-crc.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- {bat-mtlp-9}: [DMESG-WARN][29] ([i915#12695]) -> [PASS][30] +14 other tests pass
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-mtlp-9/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/bat-mtlp-9/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12695]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12695
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914
[i915#12926]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12926
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8145 -> IGTPW_12281
* Linux: CI_DRM_15808 -> CI_DRM_15809
CI-20190529: 20190529
CI_DRM_15808: 9d12021e081c72b18c31bda175fb9a43f1d005fc @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15809: bb4897e2c04e59ecadbb34893ef907aefe2b5c0d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12281: ad4c5a513a6056071e48263bbae77cf9bc360406 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8145: 9ecc5cadf47dc934af126a6b34653b860974b9f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12281/index.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info
2024-12-10 2:08 [PATCH i-g-t 1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info Ashutosh Dixit
` (2 preceding siblings ...)
2024-12-10 2:53 ` ✗ i915.CI.BAT: failure for series starting with [i-g-t,1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info Patchwork
@ 2024-12-10 3:08 ` Patchwork
2024-12-10 4:10 ` ✗ Xe.CI.Full: failure " Patchwork
2024-12-10 11:15 ` [PATCH i-g-t 1/3] " Kamil Konieczny
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-10 3:08 UTC (permalink / raw)
To: Ashutosh Dixit; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5481 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info
URL : https://patchwork.freedesktop.org/series/142321/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8145_BAT -> XEIGTPW_12281_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 8)
------------------------------
Additional (1): bat-lnl-1
Known issues
------------
Here are the changes found in XEIGTPW_12281_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-lnl-1: NOTRUN -> [SKIP][1] ([Intel XE#1466])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-lnl-1: NOTRUN -> [SKIP][2] ([Intel XE#2244])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
- bat-lnl-1: NOTRUN -> [DMESG-WARN][3] ([Intel XE#3729]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-lnl-1: NOTRUN -> [SKIP][4] ([Intel XE#352]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_hdmi_inject@inject-audio:
- bat-lnl-1: NOTRUN -> [SKIP][5] ([Intel XE#1470] / [Intel XE#2853])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-lnl-1: NOTRUN -> [SKIP][6] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#688]) +17 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_live_ktest@xe_bo:
- bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#1192]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_mmap@vram:
- bat-lnl-1: NOTRUN -> [SKIP][9] ([Intel XE#1416])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-lnl-1: NOTRUN -> [SKIP][10] ([Intel XE#1420] / [Intel XE#2838])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-lnl-1: NOTRUN -> [SKIP][11] ([Intel XE#977])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-lnl-1: NOTRUN -> [SKIP][12] ([Intel XE#979])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-lnl-1: NOTRUN -> [SKIP][13] ([Intel XE#3342])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/bat-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3729
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8145 -> IGTPW_12281
* Linux: xe-2340-9d12021e081c72b18c31bda175fb9a43f1d005fc -> xe-2341-bb4897e2c04e59ecadbb34893ef907aefe2b5c0d
IGTPW_12281: ad4c5a513a6056071e48263bbae77cf9bc360406 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8145: 9ecc5cadf47dc934af126a6b34653b860974b9f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2340-9d12021e081c72b18c31bda175fb9a43f1d005fc: 9d12021e081c72b18c31bda175fb9a43f1d005fc
xe-2341-bb4897e2c04e59ecadbb34893ef907aefe2b5c0d: bb4897e2c04e59ecadbb34893ef907aefe2b5c0d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/index.html
[-- Attachment #2: Type: text/html, Size: 6328 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [i-g-t,1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info
2024-12-10 2:08 [PATCH i-g-t 1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info Ashutosh Dixit
` (3 preceding siblings ...)
2024-12-10 3:08 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2024-12-10 4:10 ` Patchwork
2024-12-10 11:15 ` [PATCH i-g-t 1/3] " Kamil Konieczny
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-10 4:10 UTC (permalink / raw)
To: Ashutosh Dixit; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 90905 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info
URL : https://patchwork.freedesktop.org/series/142321/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8145_full -> XEIGTPW_12281_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12281_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12281_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12281_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-lnl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-1/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_cursor_edge_walk@64x64-top-edge:
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_cursor_edge_walk@64x64-top-edge.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_cursor_edge_walk@64x64-top-edge.html
* igt@kms_getfb@getfb2-handle-closed:
- shard-bmg: [PASS][5] -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_getfb@getfb2-handle-closed.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_getfb@getfb2-handle-closed.html
* igt@xe_vm@large-misaligned-binds-2147483648:
- shard-bmg: [PASS][7] -> [DMESG-WARN][8] +13 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_vm@large-misaligned-binds-2147483648.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_vm@large-misaligned-binds-2147483648.html
#### Warnings ####
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][9] ([Intel XE#2887]) -> [SKIP][10] +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][11] ([Intel XE#3432]) -> [SKIP][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
Known issues
------------
Here are the changes found in XEIGTPW_12281_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: [PASS][13] -> [DMESG-WARN][14] ([Intel XE#3468]) +88 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@core_hotunplug@unplug-rescan.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@core_hotunplug@unplug-rescan.html
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1125]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-7/igt@intel_hwmon@hwmon-read.html
* igt@kms_3d:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1465])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@kms_3d.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1466])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2233])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@bo-too-small:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2461])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_addfb_basic@bo-too-small.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_addfb_basic@bo-too-small.html
* igt@kms_addfb_basic@invalid-get-prop-any:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2461])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_addfb_basic@invalid-get-prop-any.html
* igt@kms_atomic@test-only:
- shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#3189]) +15 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_atomic@test-only.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_atomic@test-only.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2370])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait:
- shard-bmg: [PASS][25] -> [DMESG-WARN][26] ([Intel XE#2705])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1407]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2327]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#829]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +10 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +14 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1467])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb.html
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2328])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#607])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1477])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2191]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2314] / [Intel XE#2894])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#367]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#367]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1512])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2887]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2669]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#2887]) +22 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2652] / [Intel XE#787]) +9 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#3432]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#3432]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@degamma:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#306]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-1/igt@kms_chamelium_color@degamma.html
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2325]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2252]) +8 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#373]) +9 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-bmg: [PASS][51] -> [DMESG-FAIL][52] ([Intel XE#3468]) +24 other tests dmesg-fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_color@deep-color.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#1178]) +1 other test fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@legacy:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#3278]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2341])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1468])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][57] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2320]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2321]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2321]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1424]) +10 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#323])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2286])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#309]) +9 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2291])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2291]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#1475])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1508]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled:
- shard-bmg: [PASS][71] -> [DMESG-FAIL][72] ([Intel XE#2705])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2244])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@chamelium:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#701])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#702])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2374])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1421]) +12 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-1/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#2882]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-FAIL][80] ([Intel XE#3468]) +9 other tests dmesg-fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-FAIL][81] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [ABORT][82] ([Intel XE#3468])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#2316]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2316]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#3321]) +1 other test fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][87] -> [DMESG-FAIL][88] ([Intel XE#1727] / [Intel XE#3468]) +7 other tests dmesg-fail
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode:
- shard-bmg: [PASS][89] -> [INCOMPLETE][90] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1397]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1401]) +10 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2293]) +6 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1401] / [Intel XE#1745]) +10 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-bmg: [PASS][97] -> [SKIP][98] ([Intel XE#540])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@kms_force_connector_basic@force-edid.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_force_connector_basic@force-edid.html
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#352])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2312]) +17 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#651]) +20 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#656]) +70 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [FAIL][103] ([Intel XE#2333]) +11 other tests fail
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2311]) +24 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#3189]) +8 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +31 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-lnl: NOTRUN -> [ABORT][107] ([Intel XE#3673]) +11 other tests abort
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2934])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-6/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2927])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@kms_joiner@basic-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2927])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#829]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_plane_lowres@tiling-4:
- shard-bmg: [PASS][113] -> [DMESG-FAIL][114] ([Intel XE#2705] / [Intel XE#3468])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_plane_lowres@tiling-4.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: [PASS][115] -> [INCOMPLETE][116] ([Intel XE#2705] / [Intel XE#3452] / [Intel XE#3468])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@kms_plane_lowres@tiling-x.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-3:
- shard-bmg: [PASS][117] -> [INCOMPLETE][118] ([Intel XE#3452] / [Intel XE#3468])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-3.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-3.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2493])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-1/igt@kms_plane_multiple@tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2493])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#3307])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [PASS][122] -> [DMESG-WARN][123] ([Intel XE#2566] / [Intel XE#3468]) +1 other test dmesg-warn
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2763]) +25 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2763]) +14 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#736])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: NOTRUN -> [FAIL][127] ([Intel XE#1430])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1439] / [Intel XE#836])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-59:
- shard-bmg: [PASS][129] -> [DMESG-WARN][130] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-warn
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1439] / [Intel XE#3141])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prop_blob@invalid-set-prop:
- shard-bmg: [PASS][132] -> [SKIP][133] ([Intel XE#780])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_prop_blob@invalid-set-prop.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_prop_blob@invalid-set-prop.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#2893]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1489]) +9 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2234] / [Intel XE#2850]) +18 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1406]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-6/igt@kms_psr@pr-sprite-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2330])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#3414]) +4 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#3414]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2413])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_sequence@get-busy@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [DMESG-WARN][142] ([Intel XE#3468]) +29 other tests dmesg-warn
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@kms_sequence@get-busy@pipe-c-dp-2.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [PASS][143] -> [SKIP][144] ([Intel XE#1435]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2426])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#362])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#1499])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1499])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#756]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#756])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1091] / [Intel XE#2849])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1062])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@xe_create@create-big-vram.html
* igt@xe_eudebug@exec-queue-placements:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2905]) +15 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@xe_eudebug@exec-queue-placements.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2905]) +11 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#688]) +19 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][156] ([Intel XE#1473] / [Intel XE#2472])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1392]) +14 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2322]) +10 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@many-rebind-imm:
- shard-bmg: [PASS][159] -> [DMESG-WARN][160] ([Intel XE#2705] / [Intel XE#3468])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_exec_fault_mode@many-rebind-imm.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_exec_fault_mode@many-rebind-imm.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [PASS][161] -> [DMESG-WARN][162] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [PASS][163] -> [DMESG-WARN][164] ([Intel XE#3343] / [Intel XE#3468])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][165] ([Intel XE#3343] / [Intel XE#3468])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#3467])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_gt_freq@freq_suspend:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#584]) +4 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@xe_gt_freq@freq_suspend.html
* igt@xe_media_fill@media-fill:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#560])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@xe_media_fill@media-fill.html
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2459] / [Intel XE#2596])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#378])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-7/igt@xe_module_load@force-load.html
- shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2457])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197]) -> ([PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [SKIP][221], [PASS][222], [PASS][223]) ([Intel XE#378])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-4/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-4/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-2/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-2/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-3/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-4/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-3/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-3/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-2/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-2/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-2/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-1/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-1/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-6/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-6/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-6/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-4/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-1/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-7/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-7/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-7/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@xe_module_load@load.html
- shard-bmg: ([PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248]) -> ([PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [SKIP][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274]) ([Intel XE#2457])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@xe_module_load@load.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [PASS][275] -> [DMESG-FAIL][276] ([Intel XE#3467])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@reload-no-display.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@xe_module_load@reload-no-display.html
* igt@xe_module_load@unload:
- shard-bmg: NOTRUN -> [DMESG-WARN][277] ([Intel XE#3467])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@xe_module_load@unload.html
* igt@xe_noexec_ping_pong:
- shard-lnl: NOTRUN -> [SKIP][278] ([Intel XE#379])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@xe_noexec_ping_pong.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-lnl: NOTRUN -> [SKIP][279] ([Intel XE#2248])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][280] ([Intel XE#977])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-8/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][281] ([Intel XE#2245])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: NOTRUN -> [ABORT][282] ([Intel XE#1616])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-prefetch.html
- shard-lnl: NOTRUN -> [ABORT][283] ([Intel XE#1616] / [Intel XE#1694] / [Intel XE#3766])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-1/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][284] ([Intel XE#579])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@xe_pm@vram-d3cold-threshold.html
- shard-bmg: NOTRUN -> [SKIP][285] ([Intel XE#579])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][286] ([Intel XE#944]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: NOTRUN -> [SKIP][287] ([Intel XE#944]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][288] ([Intel XE#3342])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: [DMESG-FAIL][289] ([Intel XE#3468]) -> [PASS][290] +2 other tests pass
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_color@ctm-signed:
- shard-bmg: [DMESG-WARN][291] ([Intel XE#877]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_color@ctm-signed.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_color@ctm-signed.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-bmg: [SKIP][293] ([Intel XE#2291]) -> [PASS][294] +2 other tests pass
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: [SKIP][295] ([Intel XE#2316]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-bmg: [DMESG-WARN][297] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@flip-vs-panning-interruptible@d-dp2:
- shard-bmg: [DMESG-WARN][299] -> [PASS][300] +1 other test pass
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible@d-dp2.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_flip@flip-vs-panning-interruptible@d-dp2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2:
- shard-bmg: [FAIL][301] ([Intel XE#2882]) -> [PASS][302] +2 other tests pass
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [FAIL][303] ([Intel XE#886]) -> [PASS][304] +3 other tests pass
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-bmg: [DMESG-WARN][305] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][306] +1 other test pass
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: [SKIP][307] ([Intel XE#1503]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-bmg: [DMESG-WARN][309] ([Intel XE#3468]) -> [PASS][310] +27 other tests pass
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_plane_alpha_blend@constant-alpha-max.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][311] ([Intel XE#1435]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][313] ([Intel XE#1499]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_vrr@negative-basic.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_vrr@negative-basic.html
* igt@xe_evict@evict-threads-small:
- shard-bmg: [DMESG-WARN][315] ([Intel XE#1727]) -> [PASS][316] +1 other test pass
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_evict@evict-threads-small.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@xe_evict@evict-threads-small.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [DMESG-WARN][317] ([Intel XE#3343]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_module_load@many-reload:
- shard-bmg: [DMESG-WARN][319] ([Intel XE#3467]) -> [PASS][320] +1 other test pass
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_module_load@many-reload.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload:
- shard-bmg: [FAIL][321] ([Intel XE#3625]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@reload.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@xe_module_load@reload.html
* igt@xe_pm@d3hot-mocs:
- shard-bmg: [DMESG-WARN][323] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_pm@d3hot-mocs.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm@s4-mocs:
- shard-bmg: [DMESG-WARN][325] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_pm@s4-mocs.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@xe_pm@s4-mocs.html
* igt@xe_pm_residency@cpg-basic:
- shard-bmg: [DMESG-FAIL][327] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][328] +6 other tests pass
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_pm_residency@cpg-basic.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][329] ([Intel XE#958]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-16bpp-rotate-0:
- shard-bmg: [DMESG-WARN][331] ([Intel XE#3468]) -> [DMESG-FAIL][332] ([Intel XE#3468])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-bmg: [SKIP][333] ([Intel XE#2327]) -> [SKIP][334] ([Intel XE#829])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-0:
- shard-bmg: [SKIP][335] ([Intel XE#1124]) -> [SKIP][336] ([Intel XE#829]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][337] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][338] ([Intel XE#3189])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-bmg: [SKIP][339] ([Intel XE#367]) -> [SKIP][340] ([Intel XE#3189])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-bmg: [SKIP][341] ([Intel XE#2325]) -> [SKIP][342] ([Intel XE#3189])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_chamelium_color@ctm-0-75.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-bmg: [SKIP][343] ([Intel XE#2252]) -> [SKIP][344] ([Intel XE#3189]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][345] ([Intel XE#1178]) -> [INCOMPLETE][346] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_content_protection@legacy.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][347] ([Intel XE#1188]) -> [SKIP][348] ([Intel XE#2341])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_content_protection@uevent.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: [SKIP][349] ([Intel XE#2320]) -> [SKIP][350] ([Intel XE#3189])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [SKIP][351] ([Intel XE#2291]) -> [SKIP][352] ([Intel XE#3189])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][353] ([Intel XE#2291]) -> [DMESG-WARN][354] ([Intel XE#3468])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [DMESG-WARN][355] ([Intel XE#3468]) -> [SKIP][356] ([Intel XE#2291])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [FAIL][357] ([Intel XE#1695]) -> [DMESG-FAIL][358] ([Intel XE#3468])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: [SKIP][359] ([Intel XE#1138]) -> [SKIP][360] ([Intel XE#3189])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_feature_discovery@display-4x.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-bmg: [DMESG-WARN][361] ([Intel XE#3468]) -> [SKIP][362] ([Intel XE#2316])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [SKIP][363] ([Intel XE#2316]) -> [ABORT][364] ([Intel XE#3468])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-bmg: [SKIP][365] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][366] ([Intel XE#3189])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][367] ([Intel XE#2312]) -> [SKIP][368] ([Intel XE#2311]) +18 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: [SKIP][369] ([Intel XE#2311]) -> [SKIP][370] ([Intel XE#3189]) +1 other test skip
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: [FAIL][371] ([Intel XE#2333]) -> [DMESG-FAIL][372] ([Intel XE#3468]) +3 other tests dmesg-fail
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-bmg: [DMESG-FAIL][373] ([Intel XE#3468]) -> [FAIL][374] ([Intel XE#2333])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][375] ([Intel XE#2312]) -> [DMESG-FAIL][376] ([Intel XE#3468]) +1 other test dmesg-fail
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][377] ([Intel XE#2312]) -> [FAIL][378] ([Intel XE#2333]) +7 other tests fail
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [DMESG-FAIL][379] ([Intel XE#3468]) -> [SKIP][380] ([Intel XE#2312]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [FAIL][381] ([Intel XE#2333]) -> [SKIP][382] ([Intel XE#2312]) +7 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][383] ([Intel XE#2311]) -> [SKIP][384] ([Intel XE#2312]) +15 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render:
- shard-bmg: [SKIP][385] ([Intel XE#2313]) -> [SKIP][386] ([Intel XE#3189]) +4 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
- shard-bmg: [SKIP][387] ([Intel XE#2312]) -> [SKIP][388] ([Intel XE#2313]) +14 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][389] ([Intel XE#2313]) -> [SKIP][390] ([Intel XE#2312]) +13 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][391] ([Intel XE#2312]) -> [SKIP][392] ([Intel XE#3189])
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][393] ([Intel XE#1503]) -> [DMESG-FAIL][394] ([Intel XE#3468])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [DMESG-FAIL][395] ([Intel XE#3468]) -> [FAIL][396] ([Intel XE#1430])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_pm_dc@dc6-dpms.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr@fbc-pr-suspend:
- shard-bmg: [SKIP][397] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][398] ([Intel XE#3189])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_psr@fbc-pr-suspend.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-6/igt@kms_psr@fbc-pr-suspend.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: [DMESG-FAIL][399] -> [TIMEOUT][400] ([Intel XE#1473])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [DMESG-WARN][401] ([Intel XE#3467]) -> [DMESG-WARN][402] ([Intel XE#3467] / [Intel XE#3468])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: [ABORT][403] ([Intel XE#1616]) -> [ABORT][404] ([Intel XE#1616] / [Intel XE#3468])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_pm@s2idle-multiple-execs.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-1/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [ABORT][405] ([Intel XE#1616] / [Intel XE#3468]) -> [ABORT][406] ([Intel XE#1616])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [ABORT][407] ([Intel XE#3765]) -> [ABORT][408] ([Intel XE#3421] / [Intel XE#3765])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/shard-bmg-5/igt@xe_wedged@wedged-at-any-timeout.html
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[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#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2461
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3452]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3452
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3765]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3765
[Intel XE#3766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[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#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[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
Build changes
-------------
* IGT: IGT_8145 -> IGTPW_12281
* Linux: xe-2340-9d12021e081c72b18c31bda175fb9a43f1d005fc -> xe-2341-bb4897e2c04e59ecadbb34893ef907aefe2b5c0d
IGTPW_12281: ad4c5a513a6056071e48263bbae77cf9bc360406 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8145: 9ecc5cadf47dc934af126a6b34653b860974b9f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2340-9d12021e081c72b18c31bda175fb9a43f1d005fc: 9d12021e081c72b18c31bda175fb9a43f1d005fc
xe-2341-bb4897e2c04e59ecadbb34893ef907aefe2b5c0d: bb4897e2c04e59ecadbb34893ef907aefe2b5c0d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12281/index.html
[-- Attachment #2: Type: text/html, Size: 107947 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 2/3] Revert "tests/xe_oa: Drop TestOa from metric_set()"
2024-12-10 2:08 ` [PATCH i-g-t 2/3] Revert "tests/xe_oa: Drop TestOa from metric_set()" Ashutosh Dixit
@ 2024-12-10 11:14 ` Kamil Konieczny
2024-12-12 1:28 ` Dixit, Ashutosh
0 siblings, 1 reply; 9+ messages in thread
From: Kamil Konieczny @ 2024-12-10 11:14 UTC (permalink / raw)
To: Ashutosh Dixit; +Cc: igt-dev, Umesh Nerlige Ramappa
Hi Ashutosh,
On 2024-12-09 at 18:08:11 -0800, Ashutosh Dixit wrote:
> This reverts commit d226604a63fbd5c37c9f5d60b6fc23acffc49f0a.
>
> Re-instate TestOa metric set. IGT needs to work with TestOa since it has
> special properties which help with OA data validation. Remaining parts of
> d226604a63fb were already reverted in 4942fc57c20f ("lib/xe/oa: Re-instate
> TestOa metric sets in LNL/BMG XML's").
>
> Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/xe_oa.c | 23 +++++++++--------------
> 1 file changed, 9 insertions(+), 14 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index 9e7c2ae1e6..c660720ea0 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -310,20 +310,15 @@ static struct intel_xe_perf_metric_set *metric_set(const struct drm_xe_engine_cl
> struct intel_xe_perf_metric_set *metric_set_iter;
> struct intel_xe_perf_metric_set *test_set = NULL;
>
> - switch (hwe->engine_class) {
> - case DRM_XE_ENGINE_CLASS_RENDER:
> - test_set_name = "RenderBasic";
> - break;
> - case DRM_XE_ENGINE_CLASS_COMPUTE:
> - test_set_name = "ComputeBasic";
> - break;
> - case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
> - case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
> - if (HAS_OAM(devid))
> - test_set_name = "MediaSet1";
> - default:
> - igt_assert(!"missing");
> - }
> + if (hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER ||
> + hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE)
> + test_set_name = "TestOa";
> + else if ((hwe->engine_class == DRM_XE_ENGINE_CLASS_VIDEO_DECODE ||
> + hwe->engine_class == DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE) &&
> + HAS_OAM(devid))
> + test_set_name = "MediaSet1";
> + else
> + igt_assert(!"reached");
>
> igt_list_for_each_entry(metric_set_iter, &intel_xe_perf->metric_sets, link) {
> if (strcmp(metric_set_iter->symbol_name, test_set_name) == 0) {
> --
> 2.47.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info
2024-12-10 2:08 [PATCH i-g-t 1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info Ashutosh Dixit
` (4 preceding siblings ...)
2024-12-10 4:10 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-12-10 11:15 ` Kamil Konieczny
5 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2024-12-10 11:15 UTC (permalink / raw)
To: Ashutosh Dixit; +Cc: igt-dev, Umesh Nerlige Ramappa
Hi Ashutosh,
On 2024-12-09 at 18:08:10 -0800, Ashutosh Dixit wrote:
> In order to avoid failures on unsupported Xe1 platforms, move Xe2+ check
> before init_sys_info.
>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3645
> Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/xe_oa.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index 8a88945a2b..9e7c2ae1e6 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -4855,14 +4855,14 @@ igt_main
> devid = intel_get_drm_devid(drm_fd);
> sysfs = igt_sysfs_open(drm_fd);
>
> + /* Currently only run on Xe2+ */
> + igt_require(intel_graphics_ver(devid) >= IP_VER(20, 0));
> +
> igt_require(init_sys_info());
>
> write_u64_file("/proc/sys/dev/xe/observation_paranoid", 1);
>
> render_copy = igt_get_render_copyfunc(devid);
> -
> - /* Currently only run on Xe2+ */
> - igt_require(intel_graphics_ver(devid) >= IP_VER(20, 0));
> }
>
> igt_subtest("non-system-wide-paranoid")
> --
> 2.47.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 2/3] Revert "tests/xe_oa: Drop TestOa from metric_set()"
2024-12-10 11:14 ` Kamil Konieczny
@ 2024-12-12 1:28 ` Dixit, Ashutosh
0 siblings, 0 replies; 9+ messages in thread
From: Dixit, Ashutosh @ 2024-12-12 1:28 UTC (permalink / raw)
To: Kamil Konieczny, Ashutosh Dixit, igt-dev, Umesh Nerlige Ramappa
On Tue, 10 Dec 2024 03:14:12 -0800, Kamil Konieczny wrote:
>
> Hi Ashutosh,
> On 2024-12-09 at 18:08:11 -0800, Ashutosh Dixit wrote:
> > This reverts commit d226604a63fbd5c37c9f5d60b6fc23acffc49f0a.
> >
> > Re-instate TestOa metric set. IGT needs to work with TestOa since it has
> > special properties which help with OA data validation. Remaining parts of
> > d226604a63fb were already reverted in 4942fc57c20f ("lib/xe/oa: Re-instate
> > TestOa metric sets in LNL/BMG XML's").
> >
> > Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
>
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Thanks Kamil, I went ahead and merged this series.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-12-12 1:28 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-10 2:08 [PATCH i-g-t 1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info Ashutosh Dixit
2024-12-10 2:08 ` [PATCH i-g-t 2/3] Revert "tests/xe_oa: Drop TestOa from metric_set()" Ashutosh Dixit
2024-12-10 11:14 ` Kamil Konieczny
2024-12-12 1:28 ` Dixit, Ashutosh
2024-12-10 2:08 ` [PATCH i-g-t 3/3] tests/intel/xe_oa: Use buf->bo_size for xe_bo_map Ashutosh Dixit
2024-12-10 2:53 ` ✗ i915.CI.BAT: failure for series starting with [i-g-t,1/3] tests/intel/xe_oa: Move Xe2+ check before init_sys_info Patchwork
2024-12-10 3:08 ` ✓ Xe.CI.BAT: success " Patchwork
2024-12-10 4:10 ` ✗ Xe.CI.Full: failure " Patchwork
2024-12-10 11:15 ` [PATCH i-g-t 1/3] " Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox