* [PATCH i-g-t 0/1] tests/intel/xe_exec_store: Introduce long-shader tests
@ 2024-11-25 13:56 Dominik Karol Piątkowski
2024-11-25 13:56 ` [PATCH i-g-t 1/1] " Dominik Karol Piątkowski
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Dominik Karol Piątkowski @ 2024-11-25 13:56 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Karol Piątkowski
Introduce 4 tests:
- long-shader-bb-sram-target-sram
- long-shader-bb-sram-target-vram
- long-shader-bb-vram-target-sram
- long-shader-bb-vram-target-vram
These tests are core version of xe_eudebug_online@writes-caching* tests.
Each test writes incrementing values to 2-page-long target surface using
long shader. The bb is searched for full shader, expecting it to exist.
The target surface is checked against written values. Each test places
bb and surface in different configuration of memory regions in order to
validate memory coherency.
Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
Dominik Karol Piątkowski (1):
tests/intel/xe_exec_store: Introduce long-shader tests
tests/intel/xe_exec_store.c | 130 ++++++++++++++++++++++++++++++++++++
1 file changed, 130 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH i-g-t 1/1] tests/intel/xe_exec_store: Introduce long-shader tests
2024-11-25 13:56 [PATCH i-g-t 0/1] tests/intel/xe_exec_store: Introduce long-shader tests Dominik Karol Piątkowski
@ 2024-11-25 13:56 ` Dominik Karol Piątkowski
2024-11-28 13:25 ` Zbigniew Kempczyński
2024-11-25 14:45 ` ✓ Xe.CI.BAT: success for " Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Dominik Karol Piątkowski @ 2024-11-25 13:56 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Karol Piątkowski
Introduce 4 tests:
- long-shader-bb-sram-target-sram
- long-shader-bb-sram-target-vram
- long-shader-bb-vram-target-sram
- long-shader-bb-vram-target-vram
These tests are core version of xe_eudebug_online@writes-caching* tests.
Each test writes incrementing values to 2-page-long target surface using
long shader. The bb is searched for full shader, expecting it to exist.
The target surface is checked against written values. Each test places
bb and surface in different configuration of memory regions in order to
validate memory coherency.
Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
---
tests/intel/xe_exec_store.c | 130 ++++++++++++++++++++++++++++++++++++
1 file changed, 130 insertions(+)
diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c
index 1375ee906..bb7e7987d 100644
--- a/tests/intel/xe_exec_store.c
+++ b/tests/intel/xe_exec_store.c
@@ -12,6 +12,10 @@
#include "xe/xe_query.h"
#include "xe_drm.h"
+#include "intel_pat.h"
+#include "intel_mocs.h"
+#include "gpgpu_shader.h"
+
/**
* TEST: Tests to verify store dword functionality.
* Category: Core
@@ -334,6 +338,120 @@ static void persistent(int fd)
xe_vm_destroy(fd, vm);
}
+#define LONG_SHADER_VALUE(n) (0xcafe0000 + (n))
+
+/**
+ * SUBTEST: long-shader-bb-%s-target-%s
+ * DESCRIPTION: Write incrementing values to 2-page-long target surface using long shader. Check if
+ * the bb contains full shader. Check if all written values are in the target surface.
+ * Place bb and surface in various memory regions to validate memory coherency.
+ *
+ * arg[1]:
+ *
+ * @sram: bb in SRAM
+ * @vram: bb in VRAM
+ *
+ * arg[2]:
+ *
+ * @sram: target surface in SRAM
+ * @vram: target surface in VRAM
+ */
+static void long_shader(int fd, struct drm_xe_engine_class_instance *hwe,
+ bool bb_in_vram, bool target_in_vram)
+{
+ const uint64_t target_offset = 0x1a000000;
+ const uint64_t bb_offset = 0x1b000000;
+ const size_t bb_size = 32768;
+ uint32_t vm_id;
+ uint32_t exec_queue;
+ const unsigned int instruction_count = 128;
+ const unsigned int walker_dim_x = 4;
+ const unsigned int walker_dim_y = 8;
+ const unsigned int surface_dim_x = 64;
+ const unsigned int surface_dim_y = instruction_count;
+ struct gpgpu_shader *shader;
+ struct intel_buf *buf;
+ struct intel_bb *ibb;
+ uint32_t *ptr;
+ uint64_t bb_region;
+ uint64_t target_region;
+
+ if (bb_in_vram || target_in_vram)
+ igt_skip_on_f(!xe_has_vram(fd), "Device does not have VRAM.\n");
+
+ bb_region = bb_in_vram ? vram_memory(fd, hwe->gt_id) : system_memory(fd);
+ target_region = target_in_vram ? vram_memory(fd, hwe->gt_id) : system_memory(fd);
+
+ buf = intel_buf_create_full(buf_ops_create(fd), 0, surface_dim_x / 4, surface_dim_y,
+ 32, 0, I915_TILING_NONE, 0, 0, 0, target_region,
+ DEFAULT_PAT_INDEX, DEFAULT_MOCS_INDEX);
+ buf->addr.offset = target_offset;
+
+ vm_id = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
+ exec_queue = xe_exec_queue_create(fd, vm_id, hwe, 0);
+
+ ibb = intel_bb_create_with_context_in_region(fd, exec_queue, vm_id, NULL, bb_size, bb_region);
+ intel_bb_remove_object(ibb, ibb->handle, ibb->batch_offset, ibb->size);
+ intel_bb_add_object(ibb, ibb->handle, ibb->size, bb_offset, ibb->alignment, false);
+ ibb->batch_offset = bb_offset;
+
+ intel_bb_set_lr_mode(ibb, true);
+
+ shader = gpgpu_shader_create(fd);
+ gpgpu_shader__nop(shader);
+ for (int i = 0; i < instruction_count; i++)
+ gpgpu_shader__common_target_write_u32(shader, i, LONG_SHADER_VALUE(i));
+ gpgpu_shader__nop(shader);
+ gpgpu_shader__eot(shader);
+
+ gpgpu_shader_exec(ibb, buf, walker_dim_x, walker_dim_y, shader, NULL, 0, 0);
+ intel_bb_sync(ibb);
+
+ ptr = xe_bo_map(fd, ibb->handle, ibb->size);
+ igt_assert_f(memmem(ptr, ibb->size, shader->code, shader->size * sizeof(uint32_t)),
+ "Could not find kernel in bb!\n");
+ gem_munmap(ptr, ibb->size);
+
+ gpgpu_shader_destroy(shader);
+
+ ptr = xe_bo_map(fd, buf->handle, buf->surface[0].size);
+ for (int i = 0; i < buf->surface[0].size / 4; i += 16)
+ for (int j = 0; j < 4; j++)
+ igt_assert(ptr[i + j] == LONG_SHADER_VALUE(i / 16));
+ gem_munmap(ptr, buf->surface[0].size);
+
+ intel_bb_destroy(ibb);
+ xe_exec_queue_destroy(fd, exec_queue);
+ xe_vm_destroy(fd, vm_id);
+ free(buf);
+}
+
+#define is_compute_on_gt(__e, __gt) (((__e)->engine_class == DRM_XE_ENGINE_CLASS_RENDER || \
+ (__e)->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) && \
+ (__e)->gt_id == (__gt))
+
+static struct drm_xe_engine_class_instance *pick_compute(int fd, int gt)
+{
+ struct drm_xe_engine_class_instance *hwe;
+ int count = 0;
+
+ xe_for_each_engine(fd, hwe)
+ if (is_compute_on_gt(hwe, gt))
+ count++;
+
+ xe_for_each_engine(fd, hwe)
+ if (is_compute_on_gt(hwe, gt) && rand() % count-- == 0)
+ return hwe;
+
+ return NULL;
+}
+
+#define test_gt_render_or_compute(t, fd, __hwe) \
+ igt_subtest_with_dynamic(t) \
+ for (int gt = 0; (__hwe = pick_compute(fd, gt)); gt++) \
+ igt_dynamic_f("%s%d", xe_engine_class_string(__hwe->engine_class), \
+ hwe->engine_instance)
+
igt_main
{
struct drm_xe_engine_class_instance *hwe;
@@ -378,6 +496,18 @@ igt_main
igt_subtest("persistent")
persistent(fd);
+ test_gt_render_or_compute("long-shader-bb-sram-target-sram", fd, hwe)
+ long_shader(fd, hwe, false, false);
+
+ test_gt_render_or_compute("long-shader-bb-sram-target-vram", fd, hwe)
+ long_shader(fd, hwe, false, true);
+
+ test_gt_render_or_compute("long-shader-bb-vram-target-sram", fd, hwe)
+ long_shader(fd, hwe, true, false);
+
+ test_gt_render_or_compute("long-shader-bb-vram-target-vram", fd, hwe)
+ long_shader(fd, hwe, true, true);
+
igt_fixture {
xe_device_put(fd);
close(fd);
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_exec_store: Introduce long-shader tests
2024-11-25 13:56 [PATCH i-g-t 0/1] tests/intel/xe_exec_store: Introduce long-shader tests Dominik Karol Piątkowski
2024-11-25 13:56 ` [PATCH i-g-t 1/1] " Dominik Karol Piątkowski
@ 2024-11-25 14:45 ` Patchwork
2024-11-25 15:01 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-25 16:09 ` ✗ Xe.CI.Full: " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-11-25 14:45 UTC (permalink / raw)
To: Dominik Karol Piątkowski; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 987 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_store: Introduce long-shader tests
URL : https://patchwork.freedesktop.org/series/141750/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8124_BAT -> XEIGTPW_12189_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8124 -> IGTPW_12189
* Linux: xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7 -> xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9
IGTPW_12189: 12189
IGT_8124: 8124
xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: 4d723d57180a3aafc1a510bc08ef42f4b03671a7
xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9: b21f1413ea1860e80fd278112e820e6dadfc9df9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/index.html
[-- Attachment #2: Type: text/html, Size: 1546 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_exec_store: Introduce long-shader tests
2024-11-25 13:56 [PATCH i-g-t 0/1] tests/intel/xe_exec_store: Introduce long-shader tests Dominik Karol Piątkowski
2024-11-25 13:56 ` [PATCH i-g-t 1/1] " Dominik Karol Piątkowski
2024-11-25 14:45 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2024-11-25 15:01 ` Patchwork
2024-11-25 16:09 ` ✗ Xe.CI.Full: " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-11-25 15:01 UTC (permalink / raw)
To: Dominik Karol Piątkowski; +Cc: igt-dev
== Series Details ==
Series: tests/intel/xe_exec_store: Introduce long-shader tests
URL : https://patchwork.freedesktop.org/series/141750/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8124 -> IGTPW_12189
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12189 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12189, 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_12189/index.html
Participating hosts (44 -> 44)
------------------------------
Additional (1): fi-glk-j4005
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12189:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@perf:
- fi-skl-6600u: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/fi-skl-6600u/igt@i915_selftest@live@perf.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/fi-skl-6600u/igt@i915_selftest@live@perf.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] +2 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1:
- {bat-mtlp-9}: [PASS][5] -> [FAIL][6] +3 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-edp-1:
- {bat-mtlp-9}: NOTRUN -> [FAIL][7] +4 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-edp-1.html
* igt@prime_vgem@basic-fence-flip:
- {bat-mtlp-9}: [PASS][8] -> [INCOMPLETE][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-mtlp-9/igt@prime_vgem@basic-fence-flip.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-mtlp-9/igt@prime_vgem@basic-fence-flip.html
Known issues
------------
Here are the changes found in IGTPW_12189 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-glk-j4005: NOTRUN -> [SKIP][10] ([i915#2190])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-glk-j4005: NOTRUN -> [SKIP][11] ([i915#4613]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [PASS][12] -> [FAIL][13] ([i915#12903])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-arls-5: NOTRUN -> [ABORT][14] ([i915#12061])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-arls-5/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][15] -> [ABORT][16] ([i915#12061])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-arls-5/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-arls-5/igt@i915_selftest@live@workarounds.html
* igt@kms_psr@psr-primary-page-flip:
- fi-glk-j4005: NOTRUN -> [SKIP][17] +10 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-dg2-8: [ABORT][18] ([i915#13025]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
* igt@dmabuf@all-tests:
- bat-apl-1: [INCOMPLETE][20] ([i915#12904]) -> [PASS][21] +1 other test pass
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-apl-1/igt@dmabuf@all-tests.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_pm_rpm@module-reload:
- bat-adls-6: [FAIL][22] ([i915#12903]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-adls-6/igt@i915_pm_rpm@module-reload.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-adls-6/igt@i915_pm_rpm@module-reload.html
- bat-rpls-4: [FAIL][24] ([i915#12903]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@kms_flip@basic-flip-vs-dpms@a-dp1:
- bat-apl-1: [DMESG-WARN][26] ([i915#12921]) -> [PASS][27] +1 other test pass
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12695]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12695
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12921]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12921
[i915#13025]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13025
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8124 -> IGTPW_12189
* Linux: CI_DRM_15737 -> CI_DRM_15738
CI-20190529: 20190529
CI_DRM_15737: 4d723d57180a3aafc1a510bc08ef42f4b03671a7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15738: b21f1413ea1860e80fd278112e820e6dadfc9df9 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12189: 12189
IGT_8124: 8124
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12189/index.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_exec_store: Introduce long-shader tests
2024-11-25 13:56 [PATCH i-g-t 0/1] tests/intel/xe_exec_store: Introduce long-shader tests Dominik Karol Piątkowski
` (2 preceding siblings ...)
2024-11-25 15:01 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-25 16:09 ` Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-11-25 16:09 UTC (permalink / raw)
To: Dominik Karol Piątkowski; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 137627 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_store: Introduce long-shader tests
URL : https://patchwork.freedesktop.org/series/141750/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8124_full -> XEIGTPW_12189_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12189_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12189_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_12189_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
- shard-lnl: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-1/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-dp-2:
- shard-bmg: [PASS][3] -> [TIMEOUT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-dp-2.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-dp-2.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-2:
- shard-bmg: [PASS][5] -> [DMESG-WARN][6] +5 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-2.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-2.html
* igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01:
- shard-bmg: [PASS][7] -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01.html
* igt@xe_eudebug_online@pagefault-read:
- shard-dg2-set2: NOTRUN -> [SKIP][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@xe_eudebug_online@pagefault-read.html
* {igt@xe_exec_store@long-shader-bb-vram-target-sram} (NEW):
- shard-lnl: NOTRUN -> [SKIP][10] +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-lnl-4/igt@xe_exec_store@long-shader-bb-vram-target-sram.html
#### Warnings ####
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [DMESG-WARN][11] ([Intel XE#3468]) -> [INCOMPLETE][12] +1 other test incomplete
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][13] ([Intel XE#2136]) -> [SKIP][14] +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-dg2-set2: [SKIP][15] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [ABORT][17] ([Intel XE#3421]) -> [ABORT][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@xe_wedged@wedged-at-any-timeout.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
New tests
---------
New tests have been introduced between XEIGT_8124_full and XEIGTPW_12189_full:
### New IGT tests (13) ###
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.86] s
* igt@kms_properties@plane-properties-legacy@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.82] s
* igt@kms_rmfb@rmfb-ioctl@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.41] s
* igt@xe_exec_store@long-shader-bb-sram-target-sram:
- Statuses : 2 pass(s)
- Exec time: [0.00, 0.01] s
* igt@xe_exec_store@long-shader-bb-sram-target-sram@drm_xe_engine_class_compute0:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@xe_exec_store@long-shader-bb-sram-target-sram@drm_xe_engine_class_render0:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@xe_exec_store@long-shader-bb-sram-target-vram:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_exec_store@long-shader-bb-sram-target-vram@drm_xe_engine_class_render0:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_exec_store@long-shader-bb-vram-target-sram:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.0, 0.04] s
* igt@xe_exec_store@long-shader-bb-vram-target-sram@drm_xe_engine_class_render0:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 0.04] s
* igt@xe_exec_store@long-shader-bb-vram-target-vram:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.0, 0.04] s
* igt@xe_exec_store@long-shader-bb-vram-target-vram@drm_xe_engine_class_compute0:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@xe_exec_store@long-shader-bb-vram-target-vram@drm_xe_engine_class_render0:
- Statuses : 1 pass(s)
- Exec time: [0.04] s
Known issues
------------
Here are the changes found in XEIGTPW_12189_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getclient:
- shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2423])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@core_getclient.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@core_getclient.html
* igt@core_getversion@all-cards:
- shard-dg2-set2: [PASS][21] -> [FAIL][22] ([Intel XE#3440])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@core_getversion@all-cards.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@core_getversion@all-cards.html
* igt@core_hotunplug@hotunbind-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1885])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@core_hotunplug@hotunbind-rebind.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#3453])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@fbdev@nullptr:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2134]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@fbdev@nullptr.html
* igt@fbdev@write:
- shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#2134]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@fbdev@write.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@fbdev@write.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2550]) +23 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2423] / [i915#2575]) +52 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [PASS][30] -> [TIMEOUT][31] ([Intel XE#1946] / [Intel XE#2473])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2327]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#316])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#1124]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1124]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#2191])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#367])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#787]) +105 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3432])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#314]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-6.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#314] / [Intel XE#455])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-6.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2252])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#373])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][47] ([Intel XE#1178])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#3304])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][49] ([Intel XE#1188])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#1188])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2320]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_edge_walk@128x128-top-edge:
- shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#2577]) +1 other test fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-1/igt@kms_cursor_edge_walk@128x128-top-edge.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-lnl-8/igt@kms_cursor_edge_walk@128x128-top-edge.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#309])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2286])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: NOTRUN -> [DMESG-FAIL][58] ([Intel XE#3468]) +4 other tests dmesg-fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2244])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#3321] / [Intel XE#3487])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg2-set2: [PASS][62] -> [SKIP][63] ([Intel XE#310])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2:
- shard-bmg: NOTRUN -> [DMESG-WARN][66] ([Intel XE#3468]) +18 other tests dmesg-warn
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#2882])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#3486])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
- shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#3321])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][72] -> [INCOMPLETE][73] ([Intel XE#2597]) +1 other test incomplete
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][74] -> [DMESG-WARN][75] ([Intel XE#3468]) +119 other tests dmesg-warn
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#455]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2136]) +47 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2136] / [Intel XE#2351]) +19 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#2136]) +17 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [FAIL][81] ([Intel XE#2333]) +2 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [INCOMPLETE][84] ([Intel XE#1727])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2311]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#651]) +10 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#653]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2313]) +10 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2312])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#656]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [PASS][91] -> [DMESG-FAIL][92] ([Intel XE#1727] / [Intel XE#3468]) +9 other tests dmesg-fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][93] ([Intel XE#1727] / [Intel XE#3468])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_hdr@static-toggle-suspend@pipe-a-dp-2.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][94] ([Intel XE#3468]) +2 other tests dmesg-warn
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_hdr@static-toggle-suspend@pipe-a-dp-4.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][95] ([Intel XE#1727] / [Intel XE#3468])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#346])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][97] ([Intel XE#1035] / [Intel XE#3468])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_lowres@tiling-none@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][98] ([Intel XE#1727] / [Intel XE#3468])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_plane_lowres@tiling-none@pipe-b-hdmi-a-6.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2493])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- shard-bmg: [PASS][101] -> [DMESG-WARN][102] ([Intel XE#2705] / [Intel XE#3468])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#2423] / [i915#2575]) +59 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +8 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +9 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2938])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1122])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][109] -> [FAIL][110] ([Intel XE#1430])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [PASS][111] -> [SKIP][112] ([Intel XE#2446]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2446]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1489]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2414])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#3414]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#3414])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2330])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1435])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_vblank@query-forked-busy-hang@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][122] ([Intel XE#1727]) +1 other test incomplete
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_vblank@query-forked-busy-hang@pipe-a-hdmi-a-6.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
- shard-bmg: [PASS][123] -> [DMESG-WARN][124] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-warn
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
* igt@kms_vblank@wait-busy-hang:
- shard-bmg: [PASS][125] -> [DMESG-FAIL][126] ([Intel XE#3468]) +20 other tests dmesg-fail
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@kms_vblank@wait-busy-hang.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][127] -> [FAIL][128] ([Intel XE#2159]) +1 other test fail
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_ccs@suspend-resume:
- shard-bmg: [PASS][129] -> [INCOMPLETE][130] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests incomplete
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@xe_ccs@suspend-resume.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@xe_ccs@suspend-resume.html
* igt@xe_eudebug@basic-vm-access-userptr:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2905]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@xe_eudebug@basic-vm-access-userptr.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: [PASS][132] -> [FAIL][133] ([Intel XE#2364])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@xe_evict@evict-large-multi-vm-cm.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate:
- shard-dg2-set2: [PASS][134] -> [SKIP][135] ([Intel XE#1130]) +97 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html
* igt@xe_exec_basic@many-null-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1130]) +100 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2322])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#288]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html
* igt@xe_exec_reset@virtual-close-execqueues-close-fd:
- shard-bmg: [PASS][139] -> [FAIL][140] ([Intel XE#3488])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html
* igt@xe_exec_sip_eudebug@breakpoint-waitsip:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2905]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#3467] / [Intel XE#3468])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-bmg: [PASS][144] -> [DMESG-WARN][145] ([Intel XE#3343])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [PASS][146] -> [DMESG-WARN][147] ([Intel XE#3343] / [Intel XE#3468]) +1 other test dmesg-warn
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-bmg: [PASS][148] -> [DMESG-WARN][149] ([Intel XE#3467])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-dg2-set2: [PASS][150] -> [DMESG-WARN][151] ([Intel XE#3467])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-dg2-set2: [PASS][152] -> [SKIP][153] ([Intel XE#2229]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][154] ([Intel XE#1999]) +2 other tests fail
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: NOTRUN -> [FAIL][155] ([Intel XE#3546])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@xe_module_load@many-reload.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: NOTRUN -> [FAIL][156] ([Intel XE#1173]) +1 other test fail
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@xe_peer2peer@read.html
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2427])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@xe_peer2peer@read.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-bmg: [PASS][158] -> [DMESG-WARN][159] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@xe_pm@s2idle-d3hot-basic-exec.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [PASS][160] -> [DMESG-WARN][161] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@xe_pm@s3-d3hot-basic-exec.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm_residency@cpg-basic:
- shard-dg2-set2: [PASS][162] -> [ABORT][163] ([Intel XE#3363])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_pm_residency@cpg-basic.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@xe_pm_residency@cpg-basic.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#944]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#944])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_vm@munmap-style-unbind-userptr-many-end:
- shard-bmg: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#1727]) +4 other tests dmesg-warn
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@xe_vm@munmap-style-unbind-userptr-many-end.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@xe_vm@munmap-style-unbind-userptr-many-end.html
#### Possible fixes ####
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: [DMESG-WARN][168] ([Intel XE#3468]) -> [PASS][169] +76 other tests pass
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@core_hotunplug@unplug-rescan.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@core_hotunplug@unplug-rescan.html
- shard-dg2-set2: [SKIP][170] ([Intel XE#1885]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@core_hotunplug@unplug-rescan.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@core_hotunplug@unplug-rescan.html
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [FAIL][172] ([Intel XE#3339]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@read:
- shard-dg2-set2: [SKIP][174] ([Intel XE#2134]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@fbdev@read.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@fbdev@read.html
* igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
- shard-bmg: [SKIP][176] ([Intel XE#2461]) -> [PASS][177] +1 other test pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
* igt@kms_async_flips@crc:
- shard-bmg: [DMESG-FAIL][178] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][179] +1 other test pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_async_flips@crc.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_async_flips@crc.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-bmg: [FAIL][180] ([Intel XE#3557]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@test-time-stamp:
- shard-dg2-set2: [INCOMPLETE][182] ([Intel XE#1727]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_async_flips@test-time-stamp.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_async_flips@test-time-stamp.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-dg2-set2: [SKIP][184] ([Intel XE#2423] / [i915#2575]) -> [PASS][185] +83 other tests pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_big_fb@linear-16bpp-rotate-0:
- shard-bmg: [SKIP][186] ([Intel XE#829]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-0.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-bmg: [DMESG-FAIL][188] ([Intel XE#3468]) -> [PASS][189] +13 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-180.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][190] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [SKIP][192] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][193] +10 other tests pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-bmg: [FAIL][194] -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_cursor_edge_walk@128x128-right-edge.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-bmg: [INCOMPLETE][196] ([Intel XE#1727] / [Intel XE#3226]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][198] ([Intel XE#2291]) -> [PASS][199] +5 other tests pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][200] ([Intel XE#2425]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [SKIP][202] ([Intel XE#2423]) -> [PASS][203] +1 other test pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_dp_aux_dev.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][204] ([Intel XE#2316]) -> [PASS][205] +7 other tests pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@basic-flip-vs-dpms:
- shard-dg2-set2: [DMESG-WARN][206] ([Intel XE#1727]) -> [PASS][207] +1 other test pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_flip@basic-flip-vs-dpms.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3:
- shard-bmg: [FAIL][208] ([Intel XE#3486]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: [FAIL][210] ([Intel XE#301]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [INCOMPLETE][212] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][213] +1 other test pass
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][214] ([Intel XE#2136]) -> [PASS][215] +18 other tests pass
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_getfb@getfb2-handle-zero:
- shard-bmg: [SKIP][216] -> [PASS][217]
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_getfb@getfb2-handle-zero.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_getfb@getfb2-handle-zero.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2-set2: [DMESG-WARN][218] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_pm_rpm@cursor-dpms.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-dg2-set2: [SKIP][220] ([Intel XE#2446]) -> [PASS][221] +1 other test pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_pm_rpm@legacy-planes-dpms.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_pm_rpm@legacy-planes@plane-41:
- shard-lnl: [DMESG-WARN][222] ([Intel XE#3184]) -> [PASS][223] +1 other test pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-8/igt@kms_pm_rpm@legacy-planes@plane-41.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-lnl-5/igt@kms_pm_rpm@legacy-planes@plane-41.html
* igt@kms_pm_rpm@universal-planes:
- shard-bmg: [INCOMPLETE][224] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_pm_rpm@universal-planes.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_pm_rpm@universal-planes.html
* igt@kms_pm_rpm@universal-planes@plane-50:
- shard-bmg: [INCOMPLETE][226] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_pm_rpm@universal-planes@plane-50.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_pm_rpm@universal-planes@plane-50.html
* igt@kms_properties@crtc-properties-atomic:
- shard-bmg: [SKIP][228] ([Intel XE#3189]) -> [PASS][229] +8 other tests pass
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_properties@crtc-properties-atomic.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_properties@crtc-properties-atomic.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-lnl: [FAIL][230] ([Intel XE#2808]) -> [PASS][231] +1 other test pass
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-4/igt@kms_psr@psr-cursor-plane-move.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-lnl-5/igt@kms_psr@psr-cursor-plane-move.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch:
- shard-bmg: [DMESG-WARN][232] ([Intel XE#1727]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch.html
* igt@xe_exec_reset@close-execqueues-close-fd:
- shard-bmg: [DMESG-WARN][234] -> [PASS][235] +1 other test pass
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_exec_reset@close-execqueues-close-fd.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@xe_exec_reset@close-execqueues-close-fd.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-bmg: [DMESG-WARN][236] ([Intel XE#3515]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][238] ([Intel XE#3467]) -> [PASS][239] +1 other test pass
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [DMESG-WARN][240] ([Intel XE#3343]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-dg2-set2: [DMESG-WARN][242] ([Intel XE#3467]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-dg2-set2: [TIMEOUT][244] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][245] +1 other test pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [SKIP][246] ([Intel XE#1192]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_live_ktest@xe_mocs.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html
* igt@xe_pm@d3hot-mocs:
- shard-bmg: [DMESG-WARN][248] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][249] +6 other tests pass
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@xe_pm@d3hot-mocs.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: [DMESG-WARN][250] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_pm@s2idle-multiple-execs.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: [SKIP][252] ([Intel XE#1130]) -> [PASS][253] +161 other tests pass
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Warnings ####
* igt@core_hotunplug@unbind-rebind:
- shard-dg2-set2: [SKIP][254] ([Intel XE#1885]) -> [DMESG-WARN][255] ([Intel XE#3468])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@core_hotunplug@unbind-rebind.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@core_hotunplug@unbind-rebind.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-bmg: [SKIP][256] ([Intel XE#829]) -> [SKIP][257] ([Intel XE#2327])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-dg2-set2: [SKIP][258] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][259] ([Intel XE#316])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][260] ([Intel XE#2136]) -> [SKIP][261] ([Intel XE#316]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][262] ([Intel XE#316]) -> [SKIP][263] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][264] ([Intel XE#2136] / [Intel XE#2351]) -> [INCOMPLETE][265] ([Intel XE#1727] / [Intel XE#402])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-0:
- shard-bmg: [DMESG-WARN][266] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-FAIL][267] ([Intel XE#3468])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-0.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-0.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
- shard-bmg: [DMESG-WARN][268] ([Intel XE#3468]) -> [DMESG-FAIL][269] ([Intel XE#3468]) +1 other test dmesg-fail
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-bmg: [SKIP][270] ([Intel XE#829]) -> [DMESG-WARN][271] ([Intel XE#3468]) +1 other test dmesg-warn
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-addfb-size-overflow:
- shard-dg2-set2: [DMESG-WARN][272] ([Intel XE#1727]) -> [SKIP][273] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_big_fb@x-tiled-addfb-size-overflow.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_big_fb@x-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][274] ([Intel XE#610]) -> [SKIP][275] ([Intel XE#2136])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [SKIP][276] ([Intel XE#829]) -> [SKIP][277] ([Intel XE#1124]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][278] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][279] ([Intel XE#1124]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][280] ([Intel XE#1124]) -> [SKIP][281] ([Intel XE#2136]) +5 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][282] ([Intel XE#2136]) -> [SKIP][283] ([Intel XE#1124]) +5 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][284] ([Intel XE#1124]) -> [SKIP][285] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][286] ([Intel XE#2191]) -> [SKIP][287] ([Intel XE#2423] / [i915#2575])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: [SKIP][288] ([Intel XE#2423] / [i915#2575]) -> [SKIP][289] ([Intel XE#2191])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][290] ([Intel XE#2423] / [i915#2575]) -> [SKIP][291] ([Intel XE#367]) +2 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][292] ([Intel XE#367]) -> [SKIP][293] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][294] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][295] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][296] ([Intel XE#2136]) -> [SKIP][297] ([Intel XE#2907])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs:
- shard-bmg: [SKIP][298] -> [SKIP][299] ([Intel XE#2887])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][300] ([Intel XE#2136]) -> [SKIP][301] ([Intel XE#3442])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][302] ([Intel XE#2907]) -> [SKIP][303] ([Intel XE#2136]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][304] -> [SKIP][305] ([Intel XE#2652] / [Intel XE#787])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][308] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][309] ([Intel XE#2136]) +3 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][310] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][311] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-dg2-set2: [SKIP][312] ([Intel XE#2136]) -> [SKIP][313] ([Intel XE#314] / [Intel XE#455])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_cdclk@mode-transition.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: [SKIP][314] ([Intel XE#2423] / [i915#2575]) -> [SKIP][315] ([Intel XE#306])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_chamelium_color@ctm-0-75.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: [SKIP][316] ([Intel XE#3189]) -> [SKIP][317] ([Intel XE#2252]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg2-set2: [SKIP][318] ([Intel XE#373]) -> [SKIP][319] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_chamelium_frames@vga-frame-dump.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][320] ([Intel XE#2423] / [i915#2575]) -> [SKIP][321] ([Intel XE#373]) +9 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_color@ctm-0-75:
- shard-bmg: [INCOMPLETE][322] ([Intel XE#1727]) -> [DMESG-WARN][323] ([Intel XE#3468]) +1 other test dmesg-warn
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_color@ctm-0-75.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_color@ctm-0-75.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][324] ([Intel XE#2341]) -> [FAIL][325] ([Intel XE#1178])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_content_protection@atomic.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [FAIL][326] ([Intel XE#1178]) -> [SKIP][327] ([Intel XE#455])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][328] ([Intel XE#2423] / [i915#2575]) -> [SKIP][329] ([Intel XE#307]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][330] ([Intel XE#1178]) -> [INCOMPLETE][331] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@kms_content_protection@legacy.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [SKIP][332] ([Intel XE#2423] / [i915#2575]) -> [FAIL][333] ([Intel XE#1178])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_content_protection@lic-type-0.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: [INCOMPLETE][334] ([Intel XE#2715] / [Intel XE#3468]) -> [FAIL][335] ([Intel XE#1178]) +1 other test fail
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-dg2-set2: [SKIP][336] ([Intel XE#2423] / [i915#2575]) -> [SKIP][337] ([Intel XE#455]) +11 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_content_protection@type1.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][338] ([Intel XE#2423] / [i915#2575]) -> [FAIL][339] ([Intel XE#1188])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_content_protection@uevent.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_content_protection@uevent.html
- shard-bmg: [SKIP][340] ([Intel XE#3189]) -> [FAIL][341] ([Intel XE#1188])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_content_protection@uevent.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][342] ([Intel XE#2423] / [i915#2575]) -> [SKIP][343] ([Intel XE#308]) +2 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-bmg: [SKIP][344] ([Intel XE#3189]) -> [SKIP][345] ([Intel XE#2320])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: [SKIP][346] ([Intel XE#308]) -> [SKIP][347] ([Intel XE#2423] / [i915#2575])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x512.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: [SKIP][348] ([Intel XE#455]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) +5 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-max-size.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][350] ([Intel XE#2291]) -> [DMESG-WARN][351] ([Intel XE#3468])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-dg2-set2: [SKIP][352] ([Intel XE#2423] / [i915#2575]) -> [SKIP][353] ([Intel XE#309])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: [SKIP][354] ([Intel XE#2351]) -> [SKIP][355] ([Intel XE#455])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_dsc@dsc-basic.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [FAIL][356] ([Intel XE#1695]) -> [DMESG-FAIL][357] ([Intel XE#1727] / [Intel XE#3468])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][358] ([Intel XE#2423] / [i915#2575]) -> [SKIP][359] ([Intel XE#701])
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][360] ([Intel XE#1137]) -> [SKIP][361] ([Intel XE#2423] / [i915#2575])
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_feature_discovery@dp-mst.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2-set2: [SKIP][362] ([Intel XE#2423] / [i915#2575]) -> [SKIP][363] ([Intel XE#310])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: [SKIP][364] ([Intel XE#2316]) -> [DMESG-WARN][365] ([Intel XE#3468])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-FAIL][366] ([Intel XE#3468]) -> [FAIL][367] ([Intel XE#2882])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [DMESG-FAIL][368] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][369] ([Intel XE#2423] / [i915#2575])
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][370] ([Intel XE#2136]) -> [SKIP][371] ([Intel XE#455]) +3 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][372] ([Intel XE#455]) -> [SKIP][373] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][374] ([Intel XE#2423] / [i915#2575]) -> [SKIP][375] ([i915#5274])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][376] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][377] ([Intel XE#651]) +4 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][378] ([Intel XE#2311]) -> [SKIP][379] ([Intel XE#2312]) +5 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][380] ([Intel XE#3189]) -> [SKIP][381] ([Intel XE#2311]) +4 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][382] ([Intel XE#2312]) -> [SKIP][383] ([Intel XE#2311]) +15 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [FAIL][384] ([Intel XE#2333]) -> [DMESG-FAIL][385] ([Intel XE#3468]) +8 other tests dmesg-fail
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][386] ([Intel XE#3189]) -> [DMESG-FAIL][387] ([Intel XE#3468]) +1 other test dmesg-fail
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-dg2-set2: [SKIP][388] ([Intel XE#2136]) -> [INCOMPLETE][389] ([Intel XE#1727] / [Intel XE#3468])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
- shard-bmg: [FAIL][390] ([Intel XE#2333]) -> [INCOMPLETE][391] ([Intel XE#3468])
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][392] ([Intel XE#2312]) -> [FAIL][393] ([Intel XE#2333]) +3 other tests fail
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [DMESG-FAIL][394] ([Intel XE#3468]) -> [FAIL][395] ([Intel XE#2333]) +10 other tests fail
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][396] ([Intel XE#2312]) -> [DMESG-FAIL][397] ([Intel XE#3468]) +3 other tests dmesg-fail
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [FAIL][398] ([Intel XE#2333]) -> [SKIP][399] ([Intel XE#2312]) +2 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [INCOMPLETE][400] -> [FAIL][401] ([Intel XE#2333])
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][402] ([Intel XE#658]) -> [SKIP][403] ([Intel XE#2136] / [Intel XE#2351])
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][404] ([Intel XE#2136]) -> [SKIP][405] ([Intel XE#651]) +12 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][406] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][407] ([Intel XE#656]) +6 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][408] ([Intel XE#651]) -> [SKIP][409] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: [SKIP][410] ([Intel XE#651]) -> [SKIP][411] ([Intel XE#2136]) +15 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][412] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][413] ([Intel XE#658]) +1 other test skip
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][414] ([Intel XE#653]) -> [SKIP][415] ([Intel XE#2136]) +15 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#653]) +24 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][418] ([Intel XE#2136]) -> [SKIP][419] ([Intel XE#656]) +7 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][420] ([Intel XE#2312]) -> [SKIP][421] ([Intel XE#2313]) +12 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][422] ([Intel XE#2313]) -> [SKIP][423] ([Intel XE#2312]) +7 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: [INCOMPLETE][424] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468]) -> [FAIL][425] ([Intel XE#2333])
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: [SKIP][426] ([Intel XE#3189]) -> [SKIP][427] ([Intel XE#2313]) +3 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][428] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][429] ([Intel XE#653]) +3 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][430] ([Intel XE#653]) -> [SKIP][431] ([Intel XE#656]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][432] ([Intel XE#653]) -> [SKIP][433] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-bmg: [DMESG-FAIL][434] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [DMESG-WARN][435] ([Intel XE#3468])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_hdr@bpc-switch-suspend.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2-set2: [SKIP][436] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][437] ([Intel XE#1727] / [Intel XE#3468])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_hdr@static-toggle-suspend.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][438] ([Intel XE#2136]) -> [SKIP][439] ([Intel XE#346])
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][440] ([Intel XE#346]) -> [SKIP][441] ([Intel XE#2136])
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [INCOMPLETE][442] ([Intel XE#1727] / [Intel XE#3468]) -> [INCOMPLETE][443] ([Intel XE#1035] / [Intel XE#3468]) +1 other test incomplete
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@kms_plane@plane-panning-bottom-right-suspend.html
- shard-dg2-set2: [SKIP][444] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][445] ([Intel XE#1035] / [Intel XE#3468])
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_plane@plane-panning-bottom-right-suspend.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: [DMESG-WARN][446] ([Intel XE#3468]) -> [DMESG-FAIL][447] ([Intel XE#2705] / [Intel XE#3468])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_plane_lowres@tiling-none.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_plane_lowres@tiling-none.html
- shard-dg2-set2: [SKIP][448] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][449] ([Intel XE#1727] / [Intel XE#3468])
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_plane_lowres@tiling-none.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][450] ([Intel XE#2423] / [i915#2575]) -> [SKIP][451] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][452] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][453] ([Intel XE#2423] / [i915#2575])
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20:
- shard-bmg: [SKIP][454] ([Intel XE#3189]) -> [DMESG-WARN][455] ([Intel XE#2566] / [Intel XE#3468])
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][456] ([Intel XE#870]) -> [SKIP][457] ([Intel XE#2136])
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_pm_backlight@fade-with-suspend.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][458] ([Intel XE#2136]) -> [SKIP][459] ([Intel XE#1129])
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-bmg: [DMESG-WARN][460] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][461] ([Intel XE#3468])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_pm_dc@dc9-dpms.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][462] ([Intel XE#2136]) -> [SKIP][463] ([Intel XE#908])
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2-set2: [SKIP][464] ([Intel XE#2446]) -> [SKIP][465] ([Intel XE#836])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2-set2: [SKIP][466] ([Intel XE#2446]) -> [INCOMPLETE][467] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][468] ([Intel XE#3189]) -> [SKIP][469] ([Intel XE#1489])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][470] ([Intel XE#1489]) -> [SKIP][471] ([Intel XE#2136]) +5 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][472] ([Intel XE#2136]) -> [SKIP][473] ([Intel XE#1489]) +8 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2-set2: [SKIP][474] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][475] ([Intel XE#2136]) +7 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_psr@fbc-pr-dpms.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-dg2-set2: [SKIP][476] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][477] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_psr@fbc-pr-primary-render.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][478] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][479] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][480] ([Intel XE#2136]) -> [SKIP][481] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@psr-basic:
- shard-bmg: [SKIP][482] ([Intel XE#3189]) -> [SKIP][483] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_psr@psr-basic.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg2-set2: [SKIP][484] ([Intel XE#2351]) -> [SKIP][485] ([Intel XE#2850] / [Intel XE#929])
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_psr@psr-cursor-plane-move.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][486] ([Intel XE#2939]) -> [SKIP][487] ([Intel XE#2136] / [Intel XE#2351])
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][488] ([Intel XE#2136]) -> [SKIP][489] ([Intel XE#2939])
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][490] ([Intel XE#2423] / [i915#2575]) -> [SKIP][491] ([Intel XE#3414])
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][492] ([Intel XE#1729]) -> [SKIP][493] ([Intel XE#2423] / [i915#2575])
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][494] ([Intel XE#2423] / [i915#2575]) -> [SKIP][495] ([Intel XE#1500])
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][496] ([Intel XE#2423] / [i915#2575]) -> [SKIP][497] ([Intel XE#2168])
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_vrr@lobf.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: [SKIP][498] ([Intel XE#3189]) -> [SKIP][499] ([Intel XE#1499])
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-drrs.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][500] ([Intel XE#756]) -> [SKIP][501] ([Intel XE#2423] / [i915#2575])
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][502] ([Intel XE#2423] / [i915#2575]) -> [SKIP][503] ([Intel XE#756])
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][504] ([Intel XE#2423] / [i915#2575]) -> [SKIP][505] ([Intel XE#1091] / [Intel XE#2849])
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-off.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][506] ([Intel XE#1130]) -> [SKIP][507] ([Intel XE#1123])
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_eudebug@basic-read-event:
- shard-dg2-set2: [SKIP][508] ([Intel XE#2905]) -> [SKIP][509] ([Intel XE#1130]) +2 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_eudebug@basic-read-event.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@basic-vm-bind:
- shard-dg2-set2: [SKIP][510] ([Intel XE#1130]) -> [SKIP][511] ([Intel XE#2905]) +11 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_eudebug@basic-vm-bind.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][512] ([Intel XE#1473]) -> [SKIP][513] ([Intel XE#1130]) +1 other test skip
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [SKIP][514] ([Intel XE#1130]) -> [TIMEOUT][515] ([Intel XE#1473] / [Intel XE#402])
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: [SKIP][516] ([Intel XE#288]) -> [SKIP][517] ([Intel XE#1130]) +21 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][518] ([Intel XE#1130]) -> [SKIP][519] ([Intel XE#288]) +29 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: [SKIP][520] ([Intel XE#1130]) -> [SKIP][521] ([Intel XE#2360]) +1 other test skip
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-dg2-set2: [INCOMPLETE][522] -> [SKIP][523] ([Intel XE#1130])
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_exec_reset@cm-gt-reset.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-dg2-set2: [DMESG-WARN][524] ([Intel XE#3467]) -> [SKIP][525] ([Intel XE#1130]) +1 other test skip
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-dg2-set2: [SKIP][526] ([Intel XE#1130]) -> [DMESG-WARN][527] ([Intel XE#3343])
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [DMESG-WARN][528] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][529] ([Intel XE#3343])
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-dg2-set2: [SKIP][530] ([Intel XE#1130]) -> [DMESG-WARN][531] ([Intel XE#3467]) +2 other tests dmesg-warn
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-dg2-set2: [DMESG-WARN][532] ([Intel XE#3343]) -> [SKIP][533] ([Intel XE#1130])
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [DMESG-FAIL][534] ([Intel XE#3467] / [Intel XE#3468]) -> [FAIL][535] ([Intel XE#3499])
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [DMESG-FAIL][536] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-FAIL][537] ([Intel XE#3467])
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: [FAIL][538] ([Intel XE#3499]) -> [DMESG-FAIL][539] ([Intel XE#3467] / [Intel XE#3468])
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-bmg: [DMESG-WARN][540] ([Intel XE#3467]) -> [DMESG-WARN][541] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: [SKIP][542] ([Intel XE#2833]) -> [SKIP][543] ([Intel XE#1192])
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_module_load@many-reload:
- shard-bmg: [DMESG-WARN][544] ([Intel XE#3467]) -> [DMESG-FAIL][545] ([Intel XE#3467])
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@xe_module_load@many-reload.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-6/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload:
- shard-bmg: [DMESG-WARN][546] ([Intel XE#3468]) -> [DMESG-WARN][547] ([Intel XE#3467])
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@xe_module_load@reload.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-3/igt@xe_module_load@reload.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [DMESG-FAIL][548] ([Intel XE#3467]) -> [DMESG-WARN][549] ([Intel XE#3467])
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@xe_module_load@reload-no-display.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-bmg-1/igt@xe_module_load@reload-no-display.html
- shard-dg2-set2: [FAIL][550] ([Intel XE#3546]) -> [DMESG-WARN][551] ([Intel XE#3467])
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_module_load@reload-no-display.html
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][552] ([Intel XE#3573]) -> [SKIP][553] ([Intel XE#1130]) +6 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-dg2-set2: [SKIP][554] ([Intel XE#1130]) -> [SKIP][555] ([Intel XE#3573]) +7 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_oa@invalid-remove-userspace-config.html
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][556] ([Intel XE#1130]) -> [SKIP][557] ([Intel XE#1337])
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][558] ([Intel XE#1130]) -> [SKIP][559] ([Intel XE#2838] / [Intel XE#979])
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][560] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][561] ([Intel XE#1130]) +1 other test skip
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][562] ([Intel XE#1130]) -> [SKIP][563] ([Intel XE#2284])
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [DMESG-WARN][564] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][565] ([Intel XE#1130])
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@s2idle-basic-exec.html
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][566] ([Intel XE#1130]) -> [SKIP][567] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-435/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [SKIP][568] ([Intel XE#1130]) -> [DMESG-WARN][569] ([Intel XE#3468] / [Intel XE#569])
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_pm@s3-d3hot-basic-exec.html
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [DMESG-WARN][570] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][571] ([Intel XE#1130])
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@s3-exec-after.html
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [DMESG-WARN][572] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [ABORT][573] ([Intel XE#1794] / [Intel XE#3468])
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][574] ([Intel XE#1130]) -> [SKIP][575] ([Intel XE#944]) +4 other tests skip
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_query@multigpu-query-engines.html
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
* igt@xe_vm@large-split-misaligned-binds-134217728:
- shard-dg2-set2: [SKIP][576] ([Intel XE#1130]) -> [DMESG-WARN][577] ([Intel XE#1727]) +1 other test dmesg-warn
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_vm@large-split-misaligned-binds-134217728.html
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-436/igt@xe_vm@large-split-misaligned-binds-134217728.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [SKIP][578] ([Intel XE#1130]) -> [ABORT][579] ([Intel XE#3421])
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-463/igt@xe_wedged@wedged-at-any-timeout.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [ABORT][580] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][581] ([Intel XE#1130])
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_wedged@wedged-mode-toggle.html
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[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#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#1946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1946
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[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#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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2461
[Intel XE#2473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2473
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#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#2808]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2808
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[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#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189
[Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3363]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3363
[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#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[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#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
[Intel XE#3488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3488
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#3557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3557
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8124 -> IGTPW_12189
* Linux: xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7 -> xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9
IGTPW_12189: 12189
IGT_8124: 8124
xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: 4d723d57180a3aafc1a510bc08ef42f4b03671a7
xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9: b21f1413ea1860e80fd278112e820e6dadfc9df9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12189/index.html
[-- Attachment #2: Type: text/html, Size: 179047 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/xe_exec_store: Introduce long-shader tests
2024-11-25 13:56 ` [PATCH i-g-t 1/1] " Dominik Karol Piątkowski
@ 2024-11-28 13:25 ` Zbigniew Kempczyński
0 siblings, 0 replies; 6+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-28 13:25 UTC (permalink / raw)
To: Dominik Karol Piątkowski; +Cc: igt-dev
On Mon, Nov 25, 2024 at 02:56:45PM +0100, Dominik Karol Piątkowski wrote:
> Introduce 4 tests:
> - long-shader-bb-sram-target-sram
> - long-shader-bb-sram-target-vram
> - long-shader-bb-vram-target-sram
> - long-shader-bb-vram-target-vram
>
> These tests are core version of xe_eudebug_online@writes-caching* tests.
>
> Each test writes incrementing values to 2-page-long target surface using
> long shader. The bb is searched for full shader, expecting it to exist.
> The target surface is checked against written values. Each test places
> bb and surface in different configuration of memory regions in order to
> validate memory coherency.
>
> Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
> ---
> tests/intel/xe_exec_store.c | 130 ++++++++++++++++++++++++++++++++++++
> 1 file changed, 130 insertions(+)
>
> diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c
> index 1375ee906..bb7e7987d 100644
> --- a/tests/intel/xe_exec_store.c
> +++ b/tests/intel/xe_exec_store.c
> @@ -12,6 +12,10 @@
> #include "xe/xe_query.h"
> #include "xe_drm.h"
>
> +#include "intel_pat.h"
> +#include "intel_mocs.h"
> +#include "gpgpu_shader.h"
> +
> /**
> * TEST: Tests to verify store dword functionality.
> * Category: Core
> @@ -334,6 +338,120 @@ static void persistent(int fd)
> xe_vm_destroy(fd, vm);
> }
>
> +#define LONG_SHADER_VALUE(n) (0xcafe0000 + (n))
> +
> +/**
> + * SUBTEST: long-shader-bb-%s-target-%s
> + * DESCRIPTION: Write incrementing values to 2-page-long target surface using long shader. Check if
> + * the bb contains full shader. Check if all written values are in the target surface.
> + * Place bb and surface in various memory regions to validate memory coherency.
> + *
> + * arg[1]:
> + *
> + * @sram: bb in SRAM
> + * @vram: bb in VRAM
> + *
> + * arg[2]:
> + *
> + * @sram: target surface in SRAM
> + * @vram: target surface in VRAM
> + */
> +static void long_shader(int fd, struct drm_xe_engine_class_instance *hwe,
> + bool bb_in_vram, bool target_in_vram)
> +{
> + const uint64_t target_offset = 0x1a000000;
> + const uint64_t bb_offset = 0x1b000000;
> + const size_t bb_size = 32768;
> + uint32_t vm_id;
> + uint32_t exec_queue;
> + const unsigned int instruction_count = 128;
> + const unsigned int walker_dim_x = 4;
> + const unsigned int walker_dim_y = 8;
> + const unsigned int surface_dim_x = 64;
> + const unsigned int surface_dim_y = instruction_count;
> + struct gpgpu_shader *shader;
> + struct intel_buf *buf;
> + struct intel_bb *ibb;
> + uint32_t *ptr;
> + uint64_t bb_region;
> + uint64_t target_region;
> +
> + if (bb_in_vram || target_in_vram)
> + igt_skip_on_f(!xe_has_vram(fd), "Device does not have VRAM.\n");
> +
> + bb_region = bb_in_vram ? vram_memory(fd, hwe->gt_id) : system_memory(fd);
> + target_region = target_in_vram ? vram_memory(fd, hwe->gt_id) : system_memory(fd);
> +
> + buf = intel_buf_create_full(buf_ops_create(fd), 0, surface_dim_x / 4, surface_dim_y,
> + 32, 0, I915_TILING_NONE, 0, 0, 0, target_region,
> + DEFAULT_PAT_INDEX, DEFAULT_MOCS_INDEX);
> + buf->addr.offset = target_offset;
> +
> + vm_id = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
> + exec_queue = xe_exec_queue_create(fd, vm_id, hwe, 0);
> +
> + ibb = intel_bb_create_with_context_in_region(fd, exec_queue, vm_id, NULL, bb_size, bb_region);
> + intel_bb_remove_object(ibb, ibb->handle, ibb->batch_offset, ibb->size);
> + intel_bb_add_object(ibb, ibb->handle, ibb->size, bb_offset, ibb->alignment, false);
> + ibb->batch_offset = bb_offset;
> +
> + intel_bb_set_lr_mode(ibb, true);
> +
> + shader = gpgpu_shader_create(fd);
> + gpgpu_shader__nop(shader);
> + for (int i = 0; i < instruction_count; i++)
> + gpgpu_shader__common_target_write_u32(shader, i, LONG_SHADER_VALUE(i));
> + gpgpu_shader__nop(shader);
> + gpgpu_shader__eot(shader);
> +
> + gpgpu_shader_exec(ibb, buf, walker_dim_x, walker_dim_y, shader, NULL, 0, 0);
> + intel_bb_sync(ibb);
> +
> + ptr = xe_bo_map(fd, ibb->handle, ibb->size);
> + igt_assert_f(memmem(ptr, ibb->size, shader->code, shader->size * sizeof(uint32_t)),
> + "Could not find kernel in bb!\n");
> + gem_munmap(ptr, ibb->size);
> +
> + gpgpu_shader_destroy(shader);
> +
> + ptr = xe_bo_map(fd, buf->handle, buf->surface[0].size);
> + for (int i = 0; i < buf->surface[0].size / 4; i += 16)
> + for (int j = 0; j < 4; j++)
> + igt_assert(ptr[i + j] == LONG_SHADER_VALUE(i / 16));
> + gem_munmap(ptr, buf->surface[0].size);
> +
> + intel_bb_destroy(ibb);
> + xe_exec_queue_destroy(fd, exec_queue);
> + xe_vm_destroy(fd, vm_id);
> + free(buf);
> +}
> +
> +#define is_compute_on_gt(__e, __gt) (((__e)->engine_class == DRM_XE_ENGINE_CLASS_RENDER || \
> + (__e)->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) && \
> + (__e)->gt_id == (__gt))
> +
> +static struct drm_xe_engine_class_instance *pick_compute(int fd, int gt)
> +{
> + struct drm_xe_engine_class_instance *hwe;
> + int count = 0;
> +
> + xe_for_each_engine(fd, hwe)
> + if (is_compute_on_gt(hwe, gt))
> + count++;
> +
> + xe_for_each_engine(fd, hwe)
> + if (is_compute_on_gt(hwe, gt) && rand() % count-- == 0)
> + return hwe;
> +
> + return NULL;
> +}
> +
> +#define test_gt_render_or_compute(t, fd, __hwe) \
> + igt_subtest_with_dynamic(t) \
> + for (int gt = 0; (__hwe = pick_compute(fd, gt)); gt++) \
> + igt_dynamic_f("%s%d", xe_engine_class_string(__hwe->engine_class), \
> + hwe->engine_instance)
> +
> igt_main
> {
> struct drm_xe_engine_class_instance *hwe;
> @@ -378,6 +496,18 @@ igt_main
> igt_subtest("persistent")
> persistent(fd);
>
> + test_gt_render_or_compute("long-shader-bb-sram-target-sram", fd, hwe)
> + long_shader(fd, hwe, false, false);
> +
> + test_gt_render_or_compute("long-shader-bb-sram-target-vram", fd, hwe)
> + long_shader(fd, hwe, false, true);
> +
> + test_gt_render_or_compute("long-shader-bb-vram-target-sram", fd, hwe)
> + long_shader(fd, hwe, true, false);
> +
> + test_gt_render_or_compute("long-shader-bb-vram-target-vram", fd, hwe)
> + long_shader(fd, hwe, true, true);
I prefer single subtest like 'long-shader-bb-check' with dynamic
subtests which depends on number of accessible memory regions.
In above calls hwe seems to be 'some' engine, which is some dangling
engine selected from previous test. I bet noone will take a look to
your test if some additional will be added in between.
I see you've properly selected vram accessible for gt in the test.
I think you should iterate over all accessible memory regions, especially
if there's more than single gt.
--
Zbigniew
> +
> igt_fixture {
> xe_device_put(fd);
> close(fd);
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-11-28 13:25 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-25 13:56 [PATCH i-g-t 0/1] tests/intel/xe_exec_store: Introduce long-shader tests Dominik Karol Piątkowski
2024-11-25 13:56 ` [PATCH i-g-t 1/1] " Dominik Karol Piątkowski
2024-11-28 13:25 ` Zbigniew Kempczyński
2024-11-25 14:45 ` ✓ Xe.CI.BAT: success for " Patchwork
2024-11-25 15:01 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-25 16:09 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox