* [PATCH i-g-t 0/1] Add test for configurable OA buffer size
@ 2024-12-04 16:16 Sai Teja Pottumuttu
2024-12-04 16:16 ` [PATCH i-g-t 1/1] tests/intel/xe_oa: Add test for different OA buffer sizes Sai Teja Pottumuttu
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Sai Teja Pottumuttu @ 2024-12-04 16:16 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu
The patch series adds a new test for configurable OA buffer size.
The new test oa-buffer-size checks if the oa buffer is being allocated
with the requested size and tries filling it twice to check the overflows.
Note that I would add a separate sync commit for xe_drm.h once the
respective kernel patch is merged.
Sai Teja Pottumuttu (1):
tests/intel/xe_oa: Add test for different OA buffer sizes
include/drm-uapi/xe_drm.h | 8 +++++
tests/intel/xe_oa.c | 71 +++++++++++++++++++++++++++++++++++++++
2 files changed, 79 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t 1/1] tests/intel/xe_oa: Add test for different OA buffer sizes
2024-12-04 16:16 [PATCH i-g-t 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
@ 2024-12-04 16:16 ` Sai Teja Pottumuttu
2024-12-09 20:17 ` Dixit, Ashutosh
2024-12-04 19:52 ` ✓ Xe.CI.BAT: success for Add test for configurable OA buffer size Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Sai Teja Pottumuttu @ 2024-12-04 16:16 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu
Add a new test oa-buffer-size to test different OA buffer sizes, its
allocation and overflow scenarios. The test uses the new property
DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE to be able to vary the OA buffer
sizes.
Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
---
include/drm-uapi/xe_drm.h | 8 +++++
tests/intel/xe_oa.c | 71 +++++++++++++++++++++++++++++++++++++++
2 files changed, 79 insertions(+)
diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
index 56163eb91..6d3ea045f 100644
--- a/include/drm-uapi/xe_drm.h
+++ b/include/drm-uapi/xe_drm.h
@@ -1486,6 +1486,7 @@ struct drm_xe_oa_unit {
__u64 capabilities;
#define DRM_XE_OA_CAPS_BASE (1 << 0)
#define DRM_XE_OA_CAPS_SYNCS (1 << 1)
+#define DRM_XE_OA_CAPS_OA_BUFFER_SIZE (1 << 2)
/** @oa_timestamp_freq: OA timestamp freq */
__u64 oa_timestamp_freq;
@@ -1651,6 +1652,13 @@ enum drm_xe_oa_property_id {
* to the VM bind case.
*/
DRM_XE_OA_PROPERTY_SYNCS,
+
+ /**
+ * @DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE: Specifies the size of OA buffer
+ * allocated by the driver in bytes. The default size would be 16MB and the
+ * supported sizes are powers of 2 from 128KB to 128MB.
+ */
+ DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE,
};
/**
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index 40f5d3607..abe0d2cc3 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -2504,6 +2504,60 @@ again_1:
__perf_close(stream_fd);
}
+/**
+ * SUBTEST: oa-buffer-size
+ * Description: Test OA buffer allocation and overflow with different OA buffer sizes.
+ */
+static void test_oa_buffer_size(size_t oa_buffer_size)
+{
+ int oa_exponent = max_oa_exponent_for_period_lte(20000);
+ uint64_t properties[] = {
+ DRM_XE_OA_PROPERTY_OA_UNIT_ID, 0,
+
+ /* Include OA reports in samples */
+ DRM_XE_OA_PROPERTY_SAMPLE_OA, true,
+
+ /* OA unit configuration */
+ DRM_XE_OA_PROPERTY_OA_METRIC_SET, default_test_set->perf_oa_metrics_set,
+ DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(default_test_set->perf_oa_format),
+ DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent,
+
+ DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size
+ };
+ struct intel_xe_oa_open_prop param = {
+ .num_properties = ARRAY_SIZE(properties) / 2,
+ .properties_ptr = to_user_pointer(properties),
+ };
+ uint32_t buf_size = 2 * oa_buffer_size;
+ uint8_t *buf = malloc(buf_size);
+ struct drm_xe_oa_stream_info info;
+ uint32_t total_len = 0;
+ int len;
+ u32 oa_status;
+
+ igt_assert(buf);
+
+ stream_fd = __perf_open(drm_fd, ¶m, true);
+
+ do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_INFO, &info);
+ igt_assert_eq(oa_buffer_size, info.oa_buf_size);
+
+ while (total_len < buf_size &&
+ ((len = read(stream_fd, &buf[total_len], buf_size - total_len)) > 0 ||
+ (len == -1 && (errno == EINTR || errno == EIO)))) {
+ if (errno == EIO) {
+ oa_status = get_stream_status(stream_fd);
+ igt_debug("oa_status %#x\n", oa_status);
+ igt_assert(!(oa_status & DRM_XE_OASTATUS_BUFFER_OVERFLOW));
+ }
+ if (len > 0)
+ total_len += len;
+ }
+
+ __perf_close(stream_fd);
+ free(buf);
+}
+
/**
* SUBTEST: non-zero-reason
* Description: Test reason field is non-zero. Can also check OA buffer wraparound issues
@@ -4870,6 +4924,23 @@ igt_main
igt_subtest_with_dynamic("buffer-fill")
__for_one_hwe_in_oag(hwe)
test_buffer_fill(hwe);
+ igt_subtest_group {
+ igt_fixture {
+ struct drm_xe_query_oa_units *qoa = xe_oa_units(drm_fd);
+ struct drm_xe_oa_unit *oau = (struct drm_xe_oa_unit *)&qoa->oa_units[0];
+
+ igt_require(oau->capabilities & DRM_XE_OA_CAPS_OA_BUFFER_SIZE);
+ }
+
+ igt_subtest_with_dynamic("oa-buffer-size") {
+ igt_dynamic_f("8MB")
+ test_oa_buffer_size(SZ_8M);
+ igt_dynamic_f("32MB")
+ test_oa_buffer_size(SZ_32M);
+ igt_dynamic("128MB")
+ test_oa_buffer_size(SZ_128M);
+ }
+ }
igt_subtest_with_dynamic("non-zero-reason") {
__for_one_hwe_in_oag(hwe)
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for Add test for configurable OA buffer size
2024-12-04 16:16 [PATCH i-g-t 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
2024-12-04 16:16 ` [PATCH i-g-t 1/1] tests/intel/xe_oa: Add test for different OA buffer sizes Sai Teja Pottumuttu
@ 2024-12-04 19:52 ` Patchwork
2024-12-04 20:02 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-12-04 19:52 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4589 bytes --]
== Series Details ==
Series: Add test for configurable OA buffer size
URL : https://patchwork.freedesktop.org/series/142128/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8138_BAT -> XEIGTPW_12246_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (6 -> 7)
------------------------------
Additional (1): bat-bmg-1
Known issues
------------
Here are the changes found in XEIGTPW_12246_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-1: NOTRUN -> [SKIP][1] ([Intel XE#2233])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-bmg-1: NOTRUN -> [SKIP][2] ([Intel XE#2244])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-1/igt@kms_dsc@dsc-basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-1: NOTRUN -> [SKIP][3] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-bmg-1: NOTRUN -> [SKIP][4] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2229])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate:
- bat-bmg-1: NOTRUN -> [SKIP][6] ([Intel XE#1192]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-1/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-1: NOTRUN -> [SKIP][7] ([Intel XE#1420])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-1: NOTRUN -> [SKIP][8] ([Intel XE#2245])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-1: NOTRUN -> [SKIP][9] ([Intel XE#2236])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-bmg-1: NOTRUN -> [SKIP][10] ([Intel XE#3342])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_dma_buf:
- bat-bmg-2: [SKIP][11] ([Intel XE#1192]) -> [PASS][12] +2 other tests pass
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
Build changes
-------------
* IGT: IGT_8138 -> IGTPW_12246
* Linux: xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d -> xe-2320-62d365d6c3078d7e4f34dd65735f6fcd7b53a856
IGTPW_12246: 12246
IGT_8138: 8138
xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d: c8df5caf278df4f9ca0aba627047c5ee4318fc0d
xe-2320-62d365d6c3078d7e4f34dd65735f6fcd7b53a856: 62d365d6c3078d7e4f34dd65735f6fcd7b53a856
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/index.html
[-- Attachment #2: Type: text/html, Size: 5467 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for Add test for configurable OA buffer size
2024-12-04 16:16 [PATCH i-g-t 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
2024-12-04 16:16 ` [PATCH i-g-t 1/1] tests/intel/xe_oa: Add test for different OA buffer sizes Sai Teja Pottumuttu
2024-12-04 19:52 ` ✓ Xe.CI.BAT: success for Add test for configurable OA buffer size Patchwork
@ 2024-12-04 20:02 ` Patchwork
2024-12-04 21:25 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-05 0:55 ` ✗ Xe.CI.Full: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-12-04 20:02 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
== Series Details ==
Series: Add test for configurable OA buffer size
URL : https://patchwork.freedesktop.org/series/142128/
State : success
== Summary ==
CI Bug Log - changes from IGT_8138 -> IGTPW_12246
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12246 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#9318])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-14: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#3282])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rpm@module-reload:
- bat-adls-6: NOTRUN -> [FAIL][10] ([i915#12903])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@i915_pm_rpm@module-reload.html
- bat-dg1-7: [PASS][11] -> [FAIL][12] ([i915#12903])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
- fi-tgl-1115g4: [PASS][13] -> [FAIL][14] ([i915#12903])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-14: NOTRUN -> [SKIP][15] ([i915#11681] / [i915#6621])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][16] ([i915#12435] / [i915#12919])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: NOTRUN -> [ABORT][17] ([i915#12919]) +1 other test abort
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@requests:
- bat-twl-1: NOTRUN -> [ABORT][18] ([i915#12919])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-twl-1/igt@i915_selftest@live@requests.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][19] ([i915#5190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][20] ([i915#4215] / [i915#5190])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-14: NOTRUN -> [SKIP][21] ([i915#4212]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_chamelium_edid@vga-edid-read:
- bat-dg2-13: NOTRUN -> [SKIP][22] ([Intel XE#484] / [i915#4550]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-13/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][23] ([i915#4103] / [i915#4213]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-adls-6: NOTRUN -> [SKIP][24] ([i915#4103]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-jsl-1: NOTRUN -> [SKIP][25] ([i915#4103]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-14: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#3840])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@kms_dsc@dsc-basic.html
- bat-adls-6: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#3840])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@kms_dsc@dsc-basic.html
- bat-jsl-1: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#9886])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-jsl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-14: NOTRUN -> [SKIP][29]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@kms_force_connector_basic@force-load-detect.html
- bat-adls-6: NOTRUN -> [SKIP][30]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
- bat-jsl-1: NOTRUN -> [SKIP][31]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-14: NOTRUN -> [SKIP][32] ([i915#5274])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-14: NOTRUN -> [SKIP][33] ([i915#5354])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@kms_pm_backlight@basic-brightness.html
- bat-adls-6: NOTRUN -> [SKIP][34] ([i915#5354])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][35] ([i915#1072] / [i915#9732]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-14: NOTRUN -> [SKIP][36] ([i915#1072] / [i915#9732]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-14: NOTRUN -> [SKIP][37] ([i915#3555])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@kms_setmode@basic-clone-single-crtc.html
- bat-adls-6: NOTRUN -> [SKIP][38] ([i915#3555])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
- bat-jsl-1: NOTRUN -> [SKIP][39] ([i915#3555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-14: NOTRUN -> [SKIP][40] ([i915#3708])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][41] ([i915#3291]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-adls-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-14: NOTRUN -> [SKIP][42] ([i915#3708] / [i915#4077]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-14: NOTRUN -> [SKIP][43] ([i915#3291] / [i915#3708]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-dg2-14/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [FAIL][44] ([i915#12903]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][46] ([i915#12061]) -> [PASS][47] +1 other test pass
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-mtlp-8/igt@i915_selftest@live.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [ABORT][48] ([i915#12061]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-arls-5/igt@i915_selftest@live@workarounds.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-arls-5/igt@i915_selftest@live@workarounds.html
- {bat-arls-6}: [ABORT][50] ([i915#12061]) -> [PASS][51] +1 other test pass
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8138/bat-arls-6/igt@i915_selftest@live@workarounds.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/bat-arls-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4550
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8138 -> IGTPW_12246
* Linux: CI_DRM_15786 -> CI_DRM_15788
CI-20190529: 20190529
CI_DRM_15786: c8df5caf278df4f9ca0aba627047c5ee4318fc0d @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15788: 62d365d6c3078d7e4f34dd65735f6fcd7b53a856 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12246: 12246
IGT_8138: 8138
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/index.html
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for Add test for configurable OA buffer size
2024-12-04 16:16 [PATCH i-g-t 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
` (2 preceding siblings ...)
2024-12-04 20:02 ` ✓ i915.CI.BAT: " Patchwork
@ 2024-12-04 21:25 ` Patchwork
2024-12-05 0:55 ` ✗ Xe.CI.Full: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-12-04 21:25 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
== Series Details ==
Series: Add test for configurable OA buffer size
URL : https://patchwork.freedesktop.org/series/142128/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15788_full -> IGTPW_12246_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12246_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12246_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12246_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-snb: NOTRUN -> [ABORT][1] +5 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-snb1/igt@gem_ctx_isolation@preservation-s3@rcs0.html
- shard-glk: NOTRUN -> [INCOMPLETE][2] +3 other tests incomplete
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: NOTRUN -> [ABORT][3] +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: NOTRUN -> [FAIL][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html
- shard-glk: NOTRUN -> [ABORT][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk8/igt@gem_tiled_swapping@non-threaded.html
* {igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc} (NEW):
- shard-dg1: NOTRUN -> [SKIP][6] +7 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs (NEW):
- shard-rkl: NOTRUN -> [SKIP][7] +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc (NEW):
- shard-dg2: NOTRUN -> [SKIP][8] +11 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs (NEW):
- shard-mtlp: NOTRUN -> [SKIP][9] +12 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs (NEW):
- shard-tglu: NOTRUN -> [SKIP][10] +7 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-6/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
New tests
---------
New tests have been introduced between CI_DRM_15788_full and IGTPW_12246_full:
### New IGT tests (108) ###
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.73] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-4-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-linear:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.24] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-4-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-linear:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.09, 2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-x:
- Statuses : 4 pass(s)
- Exec time: [2.05, 2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-y:
- Statuses : 2 pass(s)
- Exec time: [2.09, 2.58] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-y-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.63] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-y-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-yf:
- Statuses : 1 pass(s)
- Exec time: [2.57] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-yf-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.67] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-linear:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.17, 2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-x:
- Statuses : 2 pass(s)
- Exec time: [2.07, 2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-y:
- Statuses : 2 pass(s)
- Exec time: [2.13, 2.56] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-y-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.60] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-y-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-yf:
- Statuses : 1 pass(s)
- Exec time: [2.57] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-yf-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.64] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.27] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.75] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-4-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-linear:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-4-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-linear:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.09, 2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-x:
- Statuses : 4 pass(s)
- Exec time: [2.03, 2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y:
- Statuses : 2 pass(s)
- Exec time: [2.08, 2.55] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.60] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-yf:
- Statuses : 1 pass(s)
- Exec time: [2.55] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-yf-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.67] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-linear:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.15, 2.05] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-x:
- Statuses : 2 pass(s)
- Exec time: [2.05, 2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y:
- Statuses : 2 pass(s)
- Exec time: [2.09, 2.53] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.58] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-yf:
- Statuses : 1 pass(s)
- Exec time: [2.55] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-yf-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.68] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-y:
- Statuses : 1 pass(s)
- Exec time: [2.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-y-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.22] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.73] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-4-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-linear:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-linear:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.14, 2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-x:
- Statuses : 3 pass(s)
- Exec time: [2.03, 2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y:
- Statuses : 2 pass(s)
- Exec time: [2.08, 2.54] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-yf:
- Statuses : 1 pass(s)
- Exec time: [2.62] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-linear:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-x:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-y:
- Statuses : 1 pass(s)
- Exec time: [2.53] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-yf:
- Statuses : 1 pass(s)
- Exec time: [2.64] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-3-y:
- Statuses : 1 pass(s)
- Exec time: [2.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-3-y-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.25] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-3-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.78] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-linear:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-4-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-linear:
- Statuses : 2 pass(s)
- Exec time: [2.03, 2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-x:
- Statuses : 2 pass(s)
- Exec time: [2.03, 2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-3-y:
- Statuses : 1 pass(s)
- Exec time: [2.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-3-y-rc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.24] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-3-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@test-cursor-atomic@pipe-a-hdmi-a-2:
- Statuses : 3 pass(s)
- Exec time: [0.08, 0.23] s
* igt@kms_async_flips@test-cursor-atomic@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.33] s
* igt@kms_async_flips@test-cursor-atomic@pipe-b-hdmi-a-2:
- Statuses : 3 pass(s)
- Exec time: [0.06, 0.23] s
* igt@kms_async_flips@test-cursor-atomic@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_async_flips@test-cursor-atomic@pipe-c-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.07, 0.18] s
* igt@kms_async_flips@test-cursor-atomic@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_async_flips@test-cursor-atomic@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.77] s
* igt@kms_async_flips@test-cursor-atomic@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.09] s
* igt@kms_async_flips@test-cursor-atomic@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
Known issues
------------
Here are the changes found in IGTPW_12246_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8411]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8411]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-5/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8411]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#8411]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#9318])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@debugfs_test@basic-hwmon.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#9318])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@debugfs_test@basic-hwmon.html
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#9318])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-7/igt@debugfs_test@basic-hwmon.html
* igt@drm_fdinfo@virtual-busy:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8414]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-6/igt@drm_fdinfo@virtual-busy.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8414]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@drm_fdinfo@virtual-busy-hang.html
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-13/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4873])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-3/igt@gem_caching@read-writes.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#9323])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#9323])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-snb5/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-close.html
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#8555]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#8555]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][32] ([i915#8898])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-snb5/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-chain:
- shard-rkl: NOTRUN -> [ABORT][33] ([i915#13218]) +25 other tests abort
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@gem_exec_balancer@bonded-chain.html
* igt@gem_exec_balancer@nohangcheck:
- shard-tglu: NOTRUN -> [ABORT][34] ([i915#13218]) +27 other tests abort
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@gem_exec_balancer@nohangcheck.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-in-fence.html
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@waits:
- shard-dg1: NOTRUN -> [ABORT][37] ([i915#13218]) +22 other tests abort
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@gem_exec_balancer@waits.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#6334]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-3/igt@gem_exec_capture@capture-invisible.html
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-4/igt@gem_exec_capture@capture-invisible.html
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#6334]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-10/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][41] ([i915#6334]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#6334]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#6344])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#6344])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3711])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-18/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +7 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +8 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +8 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +10 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-4/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4812])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@gem_exec_schedule@preempt-queue.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue.html
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-2/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@thriceslice:
- shard-snb: NOTRUN -> [SKIP][56] +474 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-snb1/igt@gem_exec_schedule@thriceslice.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4860])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-none.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4860])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-10/igt@gem_lmem_swapping@heavy-random.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][62] ([i915#4613])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#12193])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4565])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][65] ([i915#4613]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk9/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +8 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@gem_mmap_gtt@fault-concurrent-x.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-12/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +5 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@gem_mmap_wc@bad-size.html
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-6/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@gem_pwrite@basic-exhaustion.html
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][74] ([i915#2658])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-snb4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3282]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-8/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][76] ([i915#12964]) +1 other test timeout
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#13033])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12917] / [i915#12964]) +4 other tests timeout
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-18/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) +5 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +9 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-1/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4885])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4885])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@gem_softpin@evict-snoop-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4885])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-5/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4079]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-5/igt@gem_tiled_pread_basic.html
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4079]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@gem_tiled_pread_basic.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#4079])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@gem_tiled_pread_basic.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4077]) +9 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-6/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) +5 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-12/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-6/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#8399])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][99] ([i915#12797])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk8/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@engine-order:
- shard-snb: NOTRUN -> [ABORT][100] ([i915#13218]) +9 other tests abort
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-snb4/igt@i915_pm_rps@engine-order.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][101] ([i915#8346])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-5/igt@i915_pm_rps@reset.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6188])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#6188])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#7707])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@intel_hwmon@hwmon-read.html
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#7707])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-4/igt@intel_hwmon@hwmon-read.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#7707])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-5/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#4215])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-12/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4215] / [i915#5190])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_async_flips@crc:
- shard-rkl: [PASS][110] -> [DMESG-WARN][111] ([i915#12964]) +4 other tests dmesg-warn
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-rkl-3/igt@kms_async_flips@crc.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-4/igt@kms_async_flips@crc.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#10333])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-5/igt@kms_async_flips@test-cursor.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#5286]) +8 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5286]) +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#5286]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#5286])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][117] +23 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3638]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#3638]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][120] +10 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190]) +11 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-glk: NOTRUN -> [SKIP][122] +292 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk9/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#5190]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +89 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#6095]) +94 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#12313])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#12313])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#12313])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#12313])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#12313])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#6095]) +81 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#12805])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#12805])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#12805])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#12805])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#12805])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#6095]) +59 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#6095]) +9 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][140] ([i915#12796]) +1 other test incomplete
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#10434] / [i915#6095])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6095]) +89 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#7828]) +6 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#7828]) +7 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#7828]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#7828]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#7828]) +7 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#7828]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#3116] / [i915#3299])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3299])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#3299])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#3116])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118] / [i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-6/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#7116] / [i915#9424])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3555]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#3555]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-6/igt@kms_cursor_crc@cursor-random-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8814]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#8814]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][160] +23 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#9809]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-snb: [PASS][162] -> [FAIL][163] ([i915#2346])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#4213])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#4103] / [i915#4213])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#4103] / [i915#4213])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#4103]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#4103]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#8588])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#8588])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#8588])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@kms_dsc@dsc-basic.html
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-5/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-12/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-5/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840] / [i915#9159])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][177] ([i915#9878])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#1839])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#1839])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-5/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#1839])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@kms_feature_discovery@display-3x.html
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#1839])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-6/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#1839])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3637]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#9934]) +7 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#3637])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#8381])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#8381])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#8381])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#9934]) +5 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#3637]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#9934]) +5 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#2672]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#2672]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#2587] / [i915#2672] / [i915#3555])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#2587] / [i915#2672]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#2672] / [i915#3555])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#2587] / [i915#2672])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#8813])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8708]) +9 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][204] +67 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1825]) +26 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#8708]) +21 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#1825]) +35 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3023]) +18 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#10433] / [i915#3458])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][210] +32 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#5354]) +34 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][212] +12 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3458]) +7 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#3458]) +8 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#8708]) +17 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-10/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#12713])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#12713])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-10/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8228]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#4816])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#6301]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#6301]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-10/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#6301]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#6301])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-snb: NOTRUN -> [ABORT][228] ([i915#13242]) +4 other tests abort
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-snb2/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-none:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#11614] / [i915#3582]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8821])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#8821])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#12247]) +20 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#12247] / [i915#6953]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#12247] / [i915#6953])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#12247] / [i915#6953])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#12247]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
- shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#12247]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#12247]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#12247] / [i915#6953]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#12247] / [i915#6953])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#12247]) +7 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#12247]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#6953])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#5354]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#5354]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#9812]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-2/igt@kms_pm_backlight@fade-with-suspend.html
- shard-mtlp: NOTRUN -> [ABORT][249] ([i915#10159] / [i915#13218]) +2 other tests abort
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#9293])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#9685])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#9685])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#9685])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-9/igt@kms_pm_dc@dc5-psr.html
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#9685])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#8430])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#8430])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#8430])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#8430])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#9519])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#9519]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#9519]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@pm-caching:
- shard-rkl: NOTRUN -> [DMESG-WARN][262] ([i915#12964]) +26 other tests dmesg-warn
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@kms_pm_rpm@pm-caching.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#6524] / [i915#6805])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-3/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#12316]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#9808]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#11520]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#11520]) +5 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#11520]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-18/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#11520]) +5 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#11520])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][271] ([i915#11520]) +9 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-snb1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][272] ([i915#11520]) +4 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk3/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#9683])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#9683])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#9688]) +18 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#1072] / [i915#9732]) +23 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-1/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#9732]) +21 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-2/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#4077] / [i915#9688]) +5 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#9732]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#9732]) +20 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#9732]) +26 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-4/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#12755]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@kms_rotation_crc@bad-pixel-format.html
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#12755])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#5289]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#5289]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#12755] / [i915#5190]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#5289])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#3555]) +3 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3555]) +3 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#3555])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#8623])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-13/igt@kms_tiled_display@basic-test-pattern.html
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#8623])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk: NOTRUN -> [FAIL][293] ([i915#10959])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk1/igt@kms_tiled_display@basic-test-pattern.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#8623])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-3/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#8623])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#11920])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#11920])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-12/igt@kms_vrr@lobf.html
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#11920])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#9906])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-1/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#9906])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-1/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#9906])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-18/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#9906])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#2437] / [i915#9412])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-6/igt@kms_writeback@writeback-pixel-formats.html
- shard-glk: NOTRUN -> [SKIP][304] ([i915#2437])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk3/igt@kms_writeback@writeback-pixel-formats.html
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#2437] / [i915#9412])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-8/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#2437] / [i915#9412])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#2437] / [i915#9412])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#2437] / [i915#9412])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-13/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@invalid-oa-exponent:
- shard-glk: NOTRUN -> [ABORT][309] ([i915#13218]) +17 other tests abort
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-glk9/igt@perf@invalid-oa-exponent.html
* igt@perf@invalid-open-flags:
- shard-mtlp: NOTRUN -> [ABORT][310] ([i915#13218]) +25 other tests abort
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@perf@invalid-open-flags.html
* igt@perf@invalid-remove-userspace-config:
- shard-dg2: NOTRUN -> [ABORT][311] ([i915#13218]) +22 other tests abort
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-10/igt@perf@invalid-remove-userspace-config.html
* igt@perf_pmu@init-busy@rcs0:
- shard-tglu-1: NOTRUN -> [ABORT][312] ([i915#13218]) +2 other tests abort
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-1/igt@perf_pmu@init-busy@rcs0.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: NOTRUN -> [FAIL][313] ([i915#4349]) +1 other test fail
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-dg2: NOTRUN -> [FAIL][314] ([i915#4349]) +3 other tests fail
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-1/igt@perf_pmu@semaphore-busy@vecs0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#3708] / [i915#4077]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-4/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#3291] / [i915#3708])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@prime_vgem@basic-fence-read.html
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#3291] / [i915#3708])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#3708] / [i915#4077]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@prime_vgem@coherency-gtt.html
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#3708]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#3708] / [i915#4077]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-13/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#3708]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-12/igt@prime_vgem@fence-flip-hang.html
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#3708]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-mtlp-7/igt@prime_vgem@fence-flip-hang.html
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#3708])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#9917])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [FAIL][325] ([i915#12910]) +9 other tests fail
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-tglu-5/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#9917])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][327] ([i915#12714] / [i915#5784]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg1-12/igt@gem_eio@unwedge-stress.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@i915_module_load@load:
- shard-dg2: ([PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [FAIL][350]) ([i915#13138]) -> ([PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-3/igt@i915_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-3/igt@i915_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-5/igt@i915_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-1/igt@i915_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-8/igt@i915_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-2/igt@i915_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-4/igt@i915_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-10/igt@i915_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-8/igt@i915_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-4/igt@i915_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-2/igt@i915_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-5/igt@i915_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-7/igt@i915_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-6/igt@i915_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-1/igt@i915_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-2/igt@i915_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-8/igt@i915_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-10/igt@i915_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-5/igt@i915_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-6/igt@i915_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-11/igt@i915_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-11/igt@i915_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-1/igt@i915_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-5/igt@i915_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-6/igt@i915_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-8/igt@i915_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-5/igt@i915_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-10/igt@i915_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@i915_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-6/igt@i915_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-2/igt@i915_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-2/igt@i915_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@i915_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-8/igt@i915_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-10/igt@i915_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-10/igt@i915_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-3/igt@i915_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-11/igt@i915_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-5/igt@i915_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-8/igt@i915_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-7/igt@i915_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@i915_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-6/igt@i915_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-4/igt@i915_module_load@load.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-rkl: [DMESG-WARN][373] ([i915#12964]) -> [PASS][374] +5 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-rkl-1/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-4/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [FAIL][375] ([i915#6880]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
#### Warnings ####
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][377] ([i915#4816]) -> [SKIP][378] ([i915#4070] / [i915#4816])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714
[i915#12755]: https://
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12246/index.html
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.Full: failure for Add test for configurable OA buffer size
2024-12-04 16:16 [PATCH i-g-t 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
` (3 preceding siblings ...)
2024-12-04 21:25 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-12-05 0:55 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-12-05 0:55 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 76917 bytes --]
== Series Details ==
Series: Add test for configurable OA buffer size
URL : https://patchwork.freedesktop.org/series/142128/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8138_full -> XEIGTPW_12246_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12246_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12246_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_12246_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@forked-move@pipe-a:
- shard-lnl: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_cursor_legacy@forked-move@pipe-a.html
* igt@kms_draw_crc@draw-method-render@rgb565-4tiled:
- shard-bmg: NOTRUN -> [DMESG-FAIL][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@kms_draw_crc@draw-method-render@rgb565-4tiled.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-render.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-render.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
- shard-lnl: NOTRUN -> [ABORT][5] +12 other tests abort
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [PASS][6] -> [DMESG-WARN][7] +2 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* {igt@xe_oa@oa-buffer-size} (NEW):
- shard-lnl: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@xe_oa@oa-buffer-size.html
- shard-bmg: NOTRUN -> [SKIP][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@xe_oa@oa-buffer-size.html
#### Warnings ####
* igt@xe_module_load@load:
- shard-dg2-set2: ([FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13], [FAIL][14], [FAIL][15], [FAIL][16], [FAIL][17], [FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [FAIL][24], [FAIL][25], [FAIL][26], [FAIL][27], [FAIL][28], [FAIL][29], [FAIL][30], [FAIL][31], [FAIL][32], [FAIL][33], [FAIL][34]) ([Intel XE#3691]) -> ([FAIL][35], [FAIL][36], [FAIL][37], [FAIL][38], [FAIL][39], [FAIL][40], [FAIL][41], [FAIL][42], [FAIL][43], [FAIL][44], [FAIL][45], [FAIL][46], [FAIL][47], [FAIL][48], [FAIL][49], [FAIL][50], [FAIL][51], [FAIL][52], [FAIL][53], [FAIL][54], [FAIL][55], [FAIL][56], [FAIL][57], [FAIL][58], [FAIL][59])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-436/igt@xe_module_load@load.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-436/igt@xe_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-436/igt@xe_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-436/igt@xe_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-436/igt@xe_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-436/igt@xe_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-466/igt@xe_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-434/igt@xe_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-434/igt@xe_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-434/igt@xe_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-466/igt@xe_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-434/igt@xe_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-434/igt@xe_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-434/igt@xe_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-466/igt@xe_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-466/igt@xe_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-466/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-466/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-435/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-435/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-435/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-435/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-466/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-435/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-dg2-435/igt@xe_module_load@load.html
New tests
---------
New tests have been introduced between XEIGT_8138_full and XEIGTPW_12246_full:
### New IGT tests (1) ###
* igt@xe_oa@oa-buffer-size:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_12246_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1125])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic_transition@plane-all-transition-nonblocking:
- shard-bmg: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#3468] / [Intel XE#877]) +1 other test dmesg-warn
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1407]) +7 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2327]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#607]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1477])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1428])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#610])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1124]) +7 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1124]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#2191]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2314] / [Intel XE#2894]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1512]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#367])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#367]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#2887]) +18 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2887]) +17 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#2669]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#306]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-5/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2325]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2252]) +11 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#373]) +11 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_color@ctm-signed:
- shard-bmg: [PASS][84] -> [DMESG-WARN][85] ([Intel XE#877]) +1 other test dmesg-warn
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_color@ctm-signed.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@kms_color@ctm-signed.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#1178]) +3 other tests fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#3278])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1468])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2320]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#2321]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1424]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-64x64:
- shard-bmg: [PASS][92] -> [INCOMPLETE][93] ([Intel XE#2594])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_cursor_crc@cursor-random-64x64.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_cursor_crc@cursor-random-64x64.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2321])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [PASS][95] -> [INCOMPLETE][96] ([Intel XE#3468]) +1 other test incomplete
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#309]) +7 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-5/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][98] ([Intel XE#2286]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: NOTRUN -> [DMESG-WARN][99] ([Intel XE#877])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][100] ([Intel XE#3468] / [Intel XE#877]) +1 other test dmesg-warn
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2323])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2244])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2244])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1138])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][105] ([Intel XE#3321])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-FAIL][106] ([Intel XE#3468]) +13 other tests dmesg-fail
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][107] ([Intel XE#3640])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [PASS][108] -> [ABORT][109] ([Intel XE#3468]) +1 other test abort
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][110] -> [DMESG-FAIL][111] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1421]) +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: [PASS][113] -> [DMESG-WARN][114] ([Intel XE#3468]) +64 other tests dmesg-warn
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [DMESG-FAIL][115] ([Intel XE#1727] / [Intel XE#3468]) +9 other tests dmesg-fail
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1401]) +5 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [DMESG-WARN][118] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-warn
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1397] / [Intel XE#1745])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1397])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2293]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [FAIL][123] ([Intel XE#2333]) +12 other tests fail
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2311]) +44 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#651]) +24 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2352])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2313]) +27 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#656]) +44 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#3374] / [Intel XE#3544])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][130] -> [SKIP][131] ([Intel XE#1503])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1503])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [PASS][133] -> [DMESG-FAIL][134] ([Intel XE#3468]) +13 other tests dmesg-fail
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_hdr@static-toggle-suspend.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@bad-hsync-start@pipe-a-dp-2:
- shard-bmg: [PASS][135] -> [DMESG-WARN][136] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-warn
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_invalid_mode@bad-hsync-start@pipe-a-dp-2.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_invalid_mode@bad-hsync-start@pipe-a-dp-2.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#346]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@kms_joiner@basic-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#346]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-bmg: [PASS][139] -> [INCOMPLETE][140] ([Intel XE#1035] / [Intel XE#2566] / [Intel XE#3468])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#2763]) +19 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2763]) +14 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#870])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2391])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2505])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2499])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#1439] / [Intel XE#836])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1439] / [Intel XE#3141])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#2893]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#1489]) +11 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1128])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1406]) +6 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2414]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#3414]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-5/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1127]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#3414])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][159] -> [FAIL][160] ([Intel XE#2883]) +6 other tests fail
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_setmode@basic.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@kms_setmode@basic.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1435])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2450])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2168])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_vrr@cmrr.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][164] ([Intel XE#2159]) +1 other test fail
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#1499])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1499])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@kms_vrr@lobf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#1091] / [Intel XE#2849])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
- shard-bmg: NOTRUN -> [ABORT][168] ([Intel XE#3673]) +1 other test abort
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#1062])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_create@create-big-vram.html
* igt@xe_create@multigpu-create-massive-size:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#944]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2905]) +10 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@exec-queue-placements:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#2905]) +14 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_eudebug@exec-queue-placements.html
* igt@xe_evict@evict-beng-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#688]) +13 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@xe_evict@evict-beng-threads-large-multi-vm.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: NOTRUN -> [FAIL][174] ([Intel XE#2364])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][175] ([Intel XE#1473])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][176] -> [TIMEOUT][177] ([Intel XE#1473] / [Intel XE#2472])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1392]) +11 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2322]) +11 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: NOTRUN -> [DMESG-WARN][180] ([Intel XE#3467] / [Intel XE#3468]) +3 other tests dmesg-warn
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [PASS][181] -> [DMESG-WARN][182] ([Intel XE#3467] / [Intel XE#3468])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [PASS][183] -> [DMESG-WARN][184] ([Intel XE#3343] / [Intel XE#3468])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-bmg: NOTRUN -> [INCOMPLETE][185] ([Intel XE#2998])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#2229])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#2833])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#2457])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@xe_module_load@force-load.html
* igt@xe_module_load@unload:
- shard-bmg: NOTRUN -> [DMESG-WARN][189] ([Intel XE#3467])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@xe_module_load@unload.html
* igt@xe_pat@pat-index-xe2:
- shard-bmg: NOTRUN -> [DMESG-WARN][190] ([Intel XE#3468]) +41 other tests dmesg-warn
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#1420] / [Intel XE#2838])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#2236])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#979])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@xe_pm@d3cold-basic.html
- shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#2284]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#2284])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][197] ([Intel XE#1358] / [Intel XE#1616])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-lnl: NOTRUN -> [ABORT][198] ([Intel XE#1358])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [PASS][199] -> [DMESG-WARN][200] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#944]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_vm@munmap-style-unbind-userptr-all:
- shard-bmg: [PASS][202] -> [DMESG-WARN][203] ([Intel XE#1727]) +3 other tests dmesg-warn
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_vm@munmap-style-unbind-userptr-all.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@xe_vm@munmap-style-unbind-userptr-all.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][204] ([Intel XE#911]) -> [PASS][205] +3 other tests pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
- shard-lnl: [FAIL][206] ([Intel XE#1701]) -> [PASS][207] +1 other test pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [DMESG-FAIL][208] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][210] ([Intel XE#3321]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][212] ([Intel XE#2882]) -> [PASS][213] +1 other test pass
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [ABORT][214] ([Intel XE#3468]) -> [PASS][215] +1 other test pass
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][216] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][217] +3 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-bmg: [DMESG-WARN][218] -> [PASS][219] +2 other tests pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: [DMESG-WARN][220] ([Intel XE#3468]) -> [PASS][221] +87 other tests pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-lnl: [FAIL][222] ([Intel XE#886]) -> [PASS][223] +1 other test pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [INCOMPLETE][224] ([Intel XE#2635]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@b-dp2:
- shard-bmg: [INCOMPLETE][226] -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check@b-dp2.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check@b-dp2.html
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: [INCOMPLETE][228] ([Intel XE#3452]) -> [PASS][229] +1 other test pass
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_plane_lowres@tiling-none.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@kms_plane_lowres@tiling-none.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][230] ([Intel XE#1430]) -> [PASS][231] +1 other test pass
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][232] ([Intel XE#2029]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-lnl: [FAIL][234] ([Intel XE#899]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_vblank@query-forked-busy-hang:
- shard-bmg: [DMESG-FAIL][236] ([Intel XE#3468]) -> [PASS][237] +25 other tests pass
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_vblank@query-forked-busy-hang.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@kms_vblank@query-forked-busy-hang.html
* igt@xe_exec_reset@virtual-close-execqueues-close-fd:
- shard-bmg: [DMESG-WARN][238] ([Intel XE#1727]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
- shard-bmg: [DMESG-WARN][240] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [DMESG-WARN][242] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [DMESG-WARN][244] ([Intel XE#3343]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-lnl: [DMESG-WARN][246] -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [DMESG-WARN][248] ([Intel XE#3467]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [SKIP][250] ([Intel XE#1192]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_live_ktest@xe_mocs.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@xe_live_ktest@xe_mocs.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [SKIP][277]) ([Intel XE#378]) -> ([PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-5/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-8/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-7/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-5/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-5/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-5/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-3/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-lnl-4/igt@xe_module_load@load.html
* igt@xe_pm@d3hot-mocs:
- shard-bmg: [DMESG-WARN][303] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][304] +5 other tests pass
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_pm@d3hot-mocs.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm@s3-basic-exec:
- shard-bmg: [DMESG-WARN][305] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_pm@s3-basic-exec.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-5/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [DMESG-WARN][307] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_pm@s4-vm-bind-userptr.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [DMESG-WARN][309] ([Intel XE#2919]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_wedged@basic-wedged.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@xe_wedged@basic-wedged.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [DMESG-WARN][311] ([Intel XE#2705] / [Intel XE#3468]) -> [DMESG-FAIL][312] ([Intel XE#2705] / [Intel XE#3468])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
- shard-bmg: [DMESG-FAIL][313] ([Intel XE#3468]) -> [DMESG-WARN][314] ([Intel XE#3468])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_content_protection@atomic:
- shard-bmg: [INCOMPLETE][315] ([Intel XE#2715] / [Intel XE#3468]) -> [FAIL][316] ([Intel XE#1178]) +1 other test fail
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_content_protection@atomic.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@kms_content_protection@atomic.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-bmg: [FAIL][317] ([Intel XE#2333]) -> [DMESG-FAIL][318] ([Intel XE#3468]) +5 other tests dmesg-fail
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: [INCOMPLETE][319] ([Intel XE#1727] / [Intel XE#2050]) -> [DMESG-FAIL][320] ([Intel XE#3468])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [DMESG-FAIL][321] ([Intel XE#3468]) -> [FAIL][322] ([Intel XE#2333]) +7 other tests fail
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [DMESG-WARN][323] ([Intel XE#3467]) -> [DMESG-WARN][324] ([Intel XE#3467] / [Intel XE#3468])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-bmg: [DMESG-WARN][325] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][326] ([Intel XE#3467])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [SKIP][327] ([Intel XE#1192]) -> [INCOMPLETE][328] ([Intel XE#2998])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_live_ktest@xe_bo.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-8/igt@xe_live_ktest@xe_bo.html
* igt@xe_pm@s2idle-basic-exec:
- shard-bmg: [ABORT][329] ([Intel XE#1616]) -> [ABORT][330] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_pm@s2idle-basic-exec.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [ABORT][331] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][332] ([Intel XE#3673])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_pm@s2idle-exec-after.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-4/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: [ABORT][333] ([Intel XE#1616]) -> [ABORT][334] ([Intel XE#1616] / [Intel XE#3468])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-userptr.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-bmg: [ABORT][335] ([Intel XE#3673]) -> [ABORT][336] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3673])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-bmg: [ABORT][337] ([Intel XE#3673]) -> [ABORT][338] ([Intel XE#3468] / [Intel XE#3673])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt0.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#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3452]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3452
[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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3640]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640
[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#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#3691]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3691
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8138 -> IGTPW_12246
* Linux: xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d -> xe-2320-62d365d6c3078d7e4f34dd65735f6fcd7b53a856
IGTPW_12246: 12246
IGT_8138: 8138
xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d: c8df5caf278df4f9ca0aba627047c5ee4318fc0d
xe-2320-62d365d6c3078d7e4f34dd65735f6fcd7b53a856: 62d365d6c3078d7e4f34dd65735f6fcd7b53a856
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12246/index.html
[-- Attachment #2: Type: text/html, Size: 89742 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/xe_oa: Add test for different OA buffer sizes
2024-12-04 16:16 ` [PATCH i-g-t 1/1] tests/intel/xe_oa: Add test for different OA buffer sizes Sai Teja Pottumuttu
@ 2024-12-09 20:17 ` Dixit, Ashutosh
0 siblings, 0 replies; 7+ messages in thread
From: Dixit, Ashutosh @ 2024-12-09 20:17 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
On Wed, 04 Dec 2024 08:16:06 -0800, Sai Teja Pottumuttu wrote:
>
Hi Sai Teja,
> Add a new test oa-buffer-size to test different OA buffer sizes, its
> allocation and overflow scenarios. The test uses the new property
> DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE to be able to vary the OA buffer
> sizes.
>
> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
> ---
> include/drm-uapi/xe_drm.h | 8 +++++
> tests/intel/xe_oa.c | 71 +++++++++++++++++++++++++++++++++++++++
> 2 files changed, 79 insertions(+)
>
> diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
> index 56163eb91..6d3ea045f 100644
> --- a/include/drm-uapi/xe_drm.h
> +++ b/include/drm-uapi/xe_drm.h
> @@ -1486,6 +1486,7 @@ struct drm_xe_oa_unit {
> __u64 capabilities;
> #define DRM_XE_OA_CAPS_BASE (1 << 0)
> #define DRM_XE_OA_CAPS_SYNCS (1 << 1)
> +#define DRM_XE_OA_CAPS_OA_BUFFER_SIZE (1 << 2)
>
> /** @oa_timestamp_freq: OA timestamp freq */
> __u64 oa_timestamp_freq;
> @@ -1651,6 +1652,13 @@ enum drm_xe_oa_property_id {
> * to the VM bind case.
> */
> DRM_XE_OA_PROPERTY_SYNCS,
> +
> + /**
> + * @DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE: Specifies the size of OA buffer
> + * allocated by the driver in bytes. The default size would be 16MB and the
> + * supported sizes are powers of 2 from 128KB to 128MB.
> + */
> + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE,
OK for now but finally, when we merge this, this uapi change will need to
come in via a separate commit which syncs IGT uapi headers with kernel
headers. You can see previous IGT commits for this file. We can easily take
care of this after the kernel patch is merged. And then we can merge the
remainder of this patch.
> };
>
> /**
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index 40f5d3607..abe0d2cc3 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -2504,6 +2504,60 @@ again_1:
> __perf_close(stream_fd);
> }
>
> +/**
> + * SUBTEST: oa-buffer-size
> + * Description: Test OA buffer allocation and overflow with different OA buffer sizes.
> + */
> +static void test_oa_buffer_size(size_t oa_buffer_size)
> +{
> + int oa_exponent = max_oa_exponent_for_period_lte(20000);
> + uint64_t properties[] = {
> + DRM_XE_OA_PROPERTY_OA_UNIT_ID, 0,
> +
> + /* Include OA reports in samples */
> + DRM_XE_OA_PROPERTY_SAMPLE_OA, true,
> +
> + /* OA unit configuration */
> + DRM_XE_OA_PROPERTY_OA_METRIC_SET, default_test_set->perf_oa_metrics_set,
> + DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(default_test_set->perf_oa_format),
> + DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent,
> +
> + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size
> + };
> + struct intel_xe_oa_open_prop param = {
> + .num_properties = ARRAY_SIZE(properties) / 2,
> + .properties_ptr = to_user_pointer(properties),
> + };
> + uint32_t buf_size = 2 * oa_buffer_size;
> + uint8_t *buf = malloc(buf_size);
> + struct drm_xe_oa_stream_info info;
> + uint32_t total_len = 0;
> + int len;
> + u32 oa_status;
> +
> + igt_assert(buf);
> +
> + stream_fd = __perf_open(drm_fd, ¶m, true);
> +
> + do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_INFO, &info);
> + igt_assert_eq(oa_buffer_size, info.oa_buf_size);
> +
> + while (total_len < buf_size &&
> + ((len = read(stream_fd, &buf[total_len], buf_size - total_len)) > 0 ||
> + (len == -1 && (errno == EINTR || errno == EIO)))) {
> + if (errno == EIO) {
> + oa_status = get_stream_status(stream_fd);
> + igt_debug("oa_status %#x\n", oa_status);
> + igt_assert(!(oa_status & DRM_XE_OASTATUS_BUFFER_OVERFLOW));
> + }
> + if (len > 0)
> + total_len += len;
> + }
> +
> + __perf_close(stream_fd);
> + free(buf);
The problem I am seeing here is we are not really checking for
anything. How about adding buffer size to the non-zero-reason subtest and
try to reuse that?
Also,
$ sudo ./build/tests/xe_oa --r oa-buffer-size
IGT-Version: 1.29-g724fd0b79 (x86_64) (Linux: 6.12.0-rc4+ x86_64)
Using IGT_SRANDOM=1733459091 for randomisation
Opened device: /dev/dri/card0
Starting subtest: oa-buffer-size
Starting dynamic subtest: 8MB
Dynamic subtest 8MB: SUCCESS (0.403s)
Starting dynamic subtest: 32MB
Dynamic subtest 32MB: SUCCESS (1.595s)
Starting dynamic subtest: 128MB
Dynamic subtest 128MB: SUCCESS (6.326s)
Subtest oa-buffer-size: SUCCESS (8.324s)
So maybe 128 MB takes too long to run, maybe we could do 8, 16 and 32 MB?
Or even just two.
So if we are able to reuse non-zero-reason subtest without issues it would
become two or three subtests:
non-zero-reason-8MB
non-zero-reason-16MB
non-zero-reason-32MB
Or similar, say using dynamic subtests.
We'll also need to time these and see how long they take to run. We can
even look at 64 and 128 MB times and then decide.
Thanks.
--
Ashutosh
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-12-09 20:17 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-04 16:16 [PATCH i-g-t 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
2024-12-04 16:16 ` [PATCH i-g-t 1/1] tests/intel/xe_oa: Add test for different OA buffer sizes Sai Teja Pottumuttu
2024-12-09 20:17 ` Dixit, Ashutosh
2024-12-04 19:52 ` ✓ Xe.CI.BAT: success for Add test for configurable OA buffer size Patchwork
2024-12-04 20:02 ` ✓ i915.CI.BAT: " Patchwork
2024-12-04 21:25 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-05 0:55 ` ✗ 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