* [PATCH i-g-t v2 0/2] Miscellaneous OA Refactors
@ 2025-01-06 3:46 Sai Teja Pottumuttu
2025-01-06 3:46 ` [PATCH i-g-t v2 1/2] tests/intel/xe_oa: Remove unused function arguments Sai Teja Pottumuttu
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Sai Teja Pottumuttu @ 2025-01-06 3:46 UTC (permalink / raw)
To: igt-dev
Cc: ashutosh.dixit, sai.teja.pottumuttu, lucas.demarchi,
jonathan.cavitt
The patch series cleans up some unused arguments and also removes
hardcoded time heuristics.
Sai Teja Pottumuttu (2):
tests/intel/xe_oa: Remove unused function arguments
tests/intel/xe_oa: Remove hardcoded time heuristics
tests/intel/xe_oa.c | 52 +++++++++++++++++++++++++++++++--------------
1 file changed, 36 insertions(+), 16 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v2 1/2] tests/intel/xe_oa: Remove unused function arguments
2025-01-06 3:46 [PATCH i-g-t v2 0/2] Miscellaneous OA Refactors Sai Teja Pottumuttu
@ 2025-01-06 3:46 ` Sai Teja Pottumuttu
2025-01-09 3:12 ` Dixit, Ashutosh
2025-01-06 3:46 ` [PATCH i-g-t v2 2/2] tests/intel/xe_oa: Remove hardcoded time heuristics Sai Teja Pottumuttu
` (4 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Sai Teja Pottumuttu @ 2025-01-06 3:46 UTC (permalink / raw)
To: igt-dev
Cc: ashutosh.dixit, sai.teja.pottumuttu, lucas.demarchi,
jonathan.cavitt
The oa_exponent argument is unused in oa_report_is_periodic
function. Thus remove it.
Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
tests/intel/xe_oa.c | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index 492a6b5d6..ad3526406 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -791,7 +791,7 @@ emit_report_perf_count(struct intel_bb *ibb,
}
static bool
-oa_report_is_periodic(uint32_t oa_exponent, const uint32_t *report)
+oa_report_is_periodic(const uint32_t *report)
{
if (report_reason(report) & OAREPORT_REASON_TIMER)
return true;
@@ -1342,7 +1342,7 @@ read_2_oa_reports(int format_id,
igt_assert_neq_u64(oa_timestamp(report, format_id), 0);
if (timer_only) {
- if (!oa_report_is_periodic(exponent, report)) {
+ if (!oa_report_is_periodic(report)) {
igt_debug("skipping non timer report\n");
continue;
}
@@ -1752,7 +1752,7 @@ static void test_oa_exponents(const struct drm_xe_engine_class_instance *hwe)
if (oa_status & DRM_XE_OASTATUS_REPORT_LOST)
igt_debug("report loss\n");
- if (!oa_report_is_periodic(exponent, report))
+ if (!oa_report_is_periodic(report))
continue;
memcpy(timer_reports, report, format_size);
@@ -1969,7 +1969,7 @@ static void test_blocking(uint64_t requested_oa_period,
for (int offset = 0; offset < ret; offset += format_size) {
uint32_t *report = (void *)(buf + offset);
- if (oa_report_is_periodic(oa_exponent, report))
+ if (oa_report_is_periodic(report))
timer_report_read = true;
else
non_timer_report_read = true;
@@ -2142,7 +2142,7 @@ static void test_polling(uint64_t requested_oa_period,
for (int offset = 0; offset < ret; offset += format_size) {
uint32_t *report = (void *)(buf + offset);
- if (oa_report_is_periodic(oa_exponent, report))
+ if (oa_report_is_periodic(report))
timer_report_read = true;
else
non_timer_report_read = true;
@@ -2463,7 +2463,7 @@ again_1:
" ts_delta_last_periodic=%"PRIu64" is_timer=%i ctx_id=%8x nb_periodic=%u\n",
oa_timestamp(report, fmt),
n_periodic_reports > 0 ? oa_timestamp_delta(report, last_periodic_report, fmt) : 0,
- oa_report_is_periodic(oa_exponent, report),
+ oa_report_is_periodic(report),
oa_report_get_ctx_id(report),
n_periodic_reports);
@@ -2471,7 +2471,7 @@ again_1:
first_timestamp = oa_timestamp(report, fmt);
last_timestamp = oa_timestamp(report, fmt);
- if (oa_report_is_periodic(oa_exponent, report)) {
+ if (oa_report_is_periodic(report)) {
memcpy(last_periodic_report, report, report_size);
n_periodic_reports++;
}
@@ -2677,12 +2677,12 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe)
" ts_delta_last_periodic=%s%"PRIu64""
" is_timer=%i ctx_id=0x%8x\n",
oa_timestamp(report, fmt),
- oa_report_is_periodic(oa_exponent, report) ? " " : "*",
+ oa_report_is_periodic(report) ? " " : "*",
n_periodic_reports > 0 ? oa_timestamp_delta(report, last_periodic_report, fmt) : 0,
- oa_report_is_periodic(oa_exponent, report),
+ oa_report_is_periodic(report),
oa_report_get_ctx_id(report));
- if (oa_report_is_periodic(oa_exponent, report)) {
+ if (oa_report_is_periodic(report)) {
memcpy(last_periodic_report, report, report_size);
/* We want to measure only the periodic reports,
@@ -4380,7 +4380,7 @@ static void check_reports(void *oa_vaddr, uint32_t oa_size,
for (reports = (uint32_t *)oa_vaddr;
timer_reports < 20 && reports[0] && oa_timestamp(reports, fmt);
reports += report_words) {
- if (!oa_report_is_periodic(oa_exp_1_millisec, reports))
+ if (!oa_report_is_periodic(reports))
continue;
timer_reports++;
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v2 2/2] tests/intel/xe_oa: Remove hardcoded time heuristics
2025-01-06 3:46 [PATCH i-g-t v2 0/2] Miscellaneous OA Refactors Sai Teja Pottumuttu
2025-01-06 3:46 ` [PATCH i-g-t v2 1/2] tests/intel/xe_oa: Remove unused function arguments Sai Teja Pottumuttu
@ 2025-01-06 3:46 ` Sai Teja Pottumuttu
2025-01-09 22:28 ` Dixit, Ashutosh
2025-01-06 7:23 ` ✓ i915.CI.BAT: success for Miscellaneous OA Refactors (rev2) Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Sai Teja Pottumuttu @ 2025-01-06 3:46 UTC (permalink / raw)
To: igt-dev
Cc: ashutosh.dixit, sai.teja.pottumuttu, lucas.demarchi,
jonathan.cavitt
Some tests in xe_oa tests have hardcoded timing heuristics. Refactor it to
make it more robust and reliable. The patch extends the wait time logically
but usually it would take a single iteration for the required reports to be
available so wait time doesn't change much.
v2:
- Extend commit message [Lucas]
- Make wait function more generic [Lucas]
Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
---
tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++-----
1 file changed, 25 insertions(+), 5 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index ad3526406..b271278d6 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -4367,6 +4367,29 @@ static void map_oa_buffer_forked_access(const struct drm_xe_engine_class_instanc
munmap(vaddr, size);
}
+static void wait_for_periodic_reports(void *oa_vaddr,
+ uint32_t n,
+ const struct drm_xe_engine_class_instance *hwe)
+{
+ uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000;
+ struct intel_xe_perf_metric_set *test_set = metric_set(hwe);
+ uint64_t fmt = test_set->perf_oa_format;
+ struct oa_format format = get_oa_format(fmt);
+ uint32_t num_periodic_reports = 0;
+ uint32_t *reports;
+
+ while (num_periodic_reports < n) {
+ usleep(100 * period_us);
+ num_periodic_reports = 0;
+ for (reports = (uint32_t *)oa_vaddr;
+ reports[0] && oa_timestamp(reports, fmt);
+ reports += format.size) {
+ if (oa_report_is_periodic(reports))
+ num_periodic_reports++;
+ }
+ }
+}
+
static void check_reports(void *oa_vaddr, uint32_t oa_size,
const struct drm_xe_engine_class_instance *hwe)
{
@@ -4396,12 +4419,10 @@ static void check_reports_from_mapped_buffer(const struct drm_xe_engine_class_in
{
void *vaddr;
uint32_t size;
- uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000;
vaddr = map_oa_buffer(&size);
- /* wait for approx 100 reports */
- usleep(100 * period_us);
+ wait_for_periodic_reports(vaddr, 20, hwe);
check_reports(vaddr, size, hwe);
munmap(vaddr, size);
@@ -4426,12 +4447,11 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_engine_class_insta
};
void *vaddr;
uint32_t size;
- uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000;
stream_fd = __perf_open(drm_fd, ¶m, false);
vaddr = map_oa_buffer(&size);
- usleep(100 * period_us);
+ wait_for_periodic_reports(vaddr, 20, hwe);
check_reports(vaddr, size, hwe);
munmap(vaddr, size);
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for Miscellaneous OA Refactors (rev2)
2025-01-06 3:46 [PATCH i-g-t v2 0/2] Miscellaneous OA Refactors Sai Teja Pottumuttu
2025-01-06 3:46 ` [PATCH i-g-t v2 1/2] tests/intel/xe_oa: Remove unused function arguments Sai Teja Pottumuttu
2025-01-06 3:46 ` [PATCH i-g-t v2 2/2] tests/intel/xe_oa: Remove hardcoded time heuristics Sai Teja Pottumuttu
@ 2025-01-06 7:23 ` Patchwork
2025-01-06 7:42 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-06 7:23 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
== Series Details ==
Series: Miscellaneous OA Refactors (rev2)
URL : https://patchwork.freedesktop.org/series/142773/
State : success
== Summary ==
CI Bug Log - changes from IGT_8174 -> IGTPW_12390
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/index.html
Participating hosts (40 -> 38)
------------------------------
Missing (2): bat-atsm-1 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12390 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@reload:
- fi-kbl-7567u: [PASS][1] -> [DMESG-WARN][2] ([i915#11621] / [i915#180] / [i915#1982]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/fi-kbl-7567u/igt@i915_module_load@reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/fi-kbl-7567u/igt@i915_module_load@reload.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] ([i915#11621]) +81 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][5] -> [DMESG-FAIL][6] ([i915#13393]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#11621] / [i915#180]) +51 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [DMESG-FAIL][9] ([i915#13393]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [DMESG-FAIL][11] ([i915#13393]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8174 -> IGTPW_12390
* Linux: CI_DRM_15892 -> CI_DRM_15905
CI-20190529: 20190529
CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15905: 3241e60971d2944662d23a791a01a7c5cdc4230f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12390: 3d76579e0610ecd7ce7d37ccc3f5118deac9d2c6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/index.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Miscellaneous OA Refactors (rev2)
2025-01-06 3:46 [PATCH i-g-t v2 0/2] Miscellaneous OA Refactors Sai Teja Pottumuttu
` (2 preceding siblings ...)
2025-01-06 7:23 ` ✓ i915.CI.BAT: success for Miscellaneous OA Refactors (rev2) Patchwork
@ 2025-01-06 7:42 ` Patchwork
2025-01-06 11:13 ` ✗ i915.CI.Full: failure " Patchwork
2025-01-06 12:26 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-06 7:42 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1141 bytes --]
== Series Details ==
Series: Miscellaneous OA Refactors (rev2)
URL : https://patchwork.freedesktop.org/series/142773/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12390_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-adlp-7
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8174 -> IGTPW_12390
* Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2437-3241e60971d2944662d23a791a01a7c5cdc4230f
IGTPW_12390: 3d76579e0610ecd7ce7d37ccc3f5118deac9d2c6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642
xe-2437-3241e60971d2944662d23a791a01a7c5cdc4230f: 3241e60971d2944662d23a791a01a7c5cdc4230f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/index.html
[-- Attachment #2: Type: text/html, Size: 1700 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for Miscellaneous OA Refactors (rev2)
2025-01-06 3:46 [PATCH i-g-t v2 0/2] Miscellaneous OA Refactors Sai Teja Pottumuttu
` (3 preceding siblings ...)
2025-01-06 7:42 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-01-06 11:13 ` Patchwork
2025-01-06 12:26 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-06 11:13 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
== Series Details ==
Series: Miscellaneous OA Refactors (rev2)
URL : https://patchwork.freedesktop.org/series/142773/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15905_full -> IGTPW_12390_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12390_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12390_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_12390/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12390_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_setmaster@master-drop-set-user:
- shard-tglu: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@core_setmaster@master-drop-set-user.html
* igt@gem_exec_balancer@individual:
- shard-dg2: NOTRUN -> [FAIL][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt@gem_exec_balancer@individual.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: NOTRUN -> [DMESG-WARN][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode:
- shard-dg1: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
New tests
---------
New tests have been introduced between CI_DRM_15905_full and IGTPW_12390_full:
### New IGT tests (1) ###
* igt@gem_render_copy@yf-tiled-to-vebox-linear@lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
Known issues
------------
Here are the changes found in IGTPW_12390_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +25 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-1/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +13 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@drm_fdinfo@isolation@vecs0.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#12392] / [i915#7297])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb4/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#13197] / [i915#13390])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#4771])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#4771])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#6344])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@concurrent:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt@gem_exec_flush@basic-uc-set-default.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_reloc@basic-cpu-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +11 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +9 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: NOTRUN -> [ABORT][41] ([i915#7975] / [i915#8213]) +1 other test abort
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4860]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-3/igt@gem_lmem_swapping@random-engines.html
- shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-3/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-7/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@big-bo-tiledy:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt@gem_mmap_gtt@big-bo-tiledy.html
* igt@gem_mmap_gtt@big-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt@gem_mmap_gtt@big-copy-odd.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +6 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][57] ([i915#2658])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@gem_pread@exhaustion.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][59] ([i915#2658])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#13398])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [TIMEOUT][63] ([i915#12917] / [i915#12964])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-linear:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt@gem_render_copy@yf-tiled-to-vebox-linear.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4079]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4079])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@allocator-evict:
- shard-dg2: [PASS][69] -> [INCOMPLETE][70] ([i915#13421]) +1 other test incomplete
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-3/igt@gem_softpin@allocator-evict.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-1/igt@gem_softpin@allocator-evict.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-3/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4879])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#3323])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282] / [i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#3297]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4958])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][79] +409 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb7/igt@gem_vm_create@invalid-create.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][80] ([i915#13356])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk4/igt@gem_workarounds@suspend-resume.html
* igt@gen3_render_mixed_blits:
- shard-dg2: NOTRUN -> [SKIP][81] +9 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt@gen3_render_mixed_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: NOTRUN -> [ABORT][82] ([i915#5566])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#2527]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt@gen9_exec_parse@bb-start-far.html
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@secure-batches:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@reload:
- shard-tglu-1: NOTRUN -> [ABORT][89] ([i915#13010])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@i915_module_load@reload.html
* igt@i915_module_load@resize-bar:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#6412])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#8399]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-dg1: [PASS][92] -> [FAIL][93] ([i915#3591])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rpm@gem-evict-pwrite:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#13328])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@i915_pm_rpm@gem-evict-pwrite.html
* igt@i915_pm_rpm@gem-mmap-type:
- shard-rkl: [PASS][95] -> [SKIP][96] ([i915#13328])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-1/igt@i915_pm_rpm@gem-mmap-type.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@i915_pm_rpm@gem-mmap-type.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#11681] / [i915#6621])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#11681] / [i915#6621]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_selftest@mock:
- shard-glk: NOTRUN -> [DMESG-WARN][100] ([i915#1982] / [i915#9311])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk6/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-glk: NOTRUN -> [DMESG-WARN][101] ([i915#9311])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk6/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][102] ([i915#4817]) +1 other test incomplete
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk6/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#7707])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4212])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#8709]) +23 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#8709]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@crc-atomic:
- shard-tglu: NOTRUN -> [INCOMPLETE][107] ([i915#13287]) +1 other test incomplete
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@kms_async_flips@crc-atomic.html
* igt@kms_async_flips@crc-atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [INCOMPLETE][108] ([i915#13287]) +1 other test incomplete
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt@kms_async_flips@crc-atomic@pipe-a-dp-4.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][109] ([i915#13287]) +1 other test incomplete
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [CRASH][110] ([i915#13287]) +3 other tests crash
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [CRASH][111] ([i915#13287]) +3 other tests crash
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#12967] / [i915#6228])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#10333]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: NOTRUN -> [FAIL][114] ([i915#5956]) +1 other test fail
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][115] ([i915#1769])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#5286]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#5286]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +9 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +180 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6095]) +39 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#6095]) +46 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][128] +468 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#6095]) +64 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-3/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#12805])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#6095]) +16 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][132] ([i915#12796])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#12313]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#6095]) +187 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6095]) +14 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#12313]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#12313])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#12313])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#12313]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#3742])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#3742])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#3742])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#7828]) +11 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#7828]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#7828]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#7828]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#7828]) +6 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt@kms_color@deep-color.html
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#9979])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#3299])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@kms_content_protection@dp-mst-type-0.html
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#3116] / [i915#3299])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-10/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#7116] / [i915#9424]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#9424])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt@kms_content_protection@uevent.html
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#3555]) +9 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#13049])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-256x256:
- shard-rkl: [PASS][164] -> [DMESG-WARN][165] ([i915#12964]) +30 other tests dmesg-warn
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x256.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x256.html
* igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][166] ([i915#12964]) +6 other tests dmesg-warn
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#13049]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8814])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8814])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#13046] / [i915#5354]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#4103] / [i915#4213]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#4103])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][176] +8 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#9809])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-snb: [PASS][178] -> [SKIP][179] +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][180] ([i915#2346]) +1 other test fail
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-snb: NOTRUN -> [FAIL][181] ([i915#2346])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#9067])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#9833])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#9723])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#9723])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#9723])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#9833])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#8588])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#8588])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#1769] / [i915#3555] / [i915#3804])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#3804])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: [PASS][192] -> [SKIP][193] ([i915#1257])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-10/igt@kms_dp_aux_dev.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#12402])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#12402])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#8812])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#3840] / [i915#9053])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#3469])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#4854])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt@kms_feature_discovery@chamelium.html
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#4854])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#4854])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#9337])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#658])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#658])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#658])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#658])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#658])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#4881])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#9934]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#3637]) +5 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-9/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3637])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#9934]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3637]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#9934]) +3 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-glk: [PASS][218] -> [FAIL][219] ([i915#11989]) +2 other tests fail
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-glk2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#8381])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: [PASS][221] -> [DMESG-FAIL][222] ([i915#12964]) +1 other test dmesg-fail
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-mtlp: [PASS][223] -> [FAIL][224] ([i915#10826]) +1 other test fail
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-4/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-tglu: [PASS][225] -> [FAIL][226] ([i915#10826] / [i915#11989])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3:
- shard-dg2: [PASS][227] -> [FAIL][228] ([i915#11989]) +3 other tests fail
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1:
- shard-tglu: [PASS][229] -> [FAIL][230] ([i915#10826])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1:
- shard-tglu: [PASS][231] -> [FAIL][232] ([i915#11989]) +4 other tests fail
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-tglu: NOTRUN -> [FAIL][233] ([i915#11989]) +3 other tests fail
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
- shard-mtlp: [PASS][234] -> [FAIL][235] ([i915#11989]) +2 other tests fail
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check-interruptible.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1:
- shard-glk: NOTRUN -> [FAIL][236] ([i915#11989]) +2 other tests fail
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#2587] / [i915#2672]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672] / [i915#3555])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#5190])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672] / [i915#3555])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +4 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555] / [i915#8813])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#8813])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#2672]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#5274])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][253] +39 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#5439])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#8708]) +22 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-tglu-1: NOTRUN -> [SKIP][256] +43 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#1825]) +10 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#1825]) +12 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#9766])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#9766])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#8708]) +15 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#3023]) +7 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#3458]) +12 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#5354]) +29 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][265] +99 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#8708]) +5 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#3458]) +15 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#12713])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt@kms_hdr@invalid-metadata-sizes.html
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8228]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228]) +4 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#12394])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#12339])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#10656])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [PASS][277] -> [SKIP][278] ([i915#12388])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#12339])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#1839])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#6301])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][282] ([i915#12756] / [i915#13409])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][283] ([i915#13409])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][284] ([i915#13026]) +1 other test incomplete
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][285] ([i915#10647] / [i915#12169])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][286] ([i915#10647]) +3 other tests fail
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][287] ([i915#10647] / [i915#12177])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#6953])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#12247]) +9 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#12247]) +7 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#9423]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#6953])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#12247]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- shard-dg1: NOTRUN -> [DMESG-WARN][295] ([i915#4423])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#12247]) +5 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-rkl: [PASS][297] -> [DMESG-WARN][298] ([i915#12964] / [i915#1982])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#5354])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#9685])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#9685])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [FAIL][302] ([i915#12913])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#5978])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#3361])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#4281])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#3828])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#9519])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#9519])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#9519])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#9519])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][311] -> [SKIP][312] ([i915#9519]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][313] -> [SKIP][314] ([i915#9519])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: NOTRUN -> [INCOMPLETE][315] ([i915#10553])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk4/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#6524] / [i915#6805])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#11520]) +9 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-snb: NOTRUN -> [SKIP][318] ([i915#11520]) +10 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#11520]) +3 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12316]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#11520]) +3 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#11520]) +7 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][323] ([i915#11520]) +8 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#11520]) +7 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#9683])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +17 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#9732]) +24 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-9/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#9688]) +6 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@psr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +4 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][330] ([i915#4077] / [i915#9688]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9732]) +8 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +20 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#9685]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][334] ([i915#5289]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#5289])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#5289])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#12755])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#12755]) +2 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-snb: NOTRUN -> [ABORT][339] ([i915#13179]) +1 other test abort
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb5/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#3555]) +6 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-3/igt@kms_setmode@clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#8809])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#3555]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][343] ([IGT#160])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#8623])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#8623])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#8623])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-mtlp: NOTRUN -> [SKIP][347] +6 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#9906]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-3/igt@kms_vrr@flip-basic-fastset.html
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#8808] / [i915#9906])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt@kms_vrr@flip-basic-fastset.html
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#9906])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#9906])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#9906]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg1: NOTRUN -> [SKIP][353] ([i915#9906]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#2437]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglu: NOTRUN -> [SKIP][355] ([i915#2437])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt@kms_writeback@writeback-invalid-parameters.html
- shard-glk: NOTRUN -> [SKIP][356] ([i915#2437]) +2 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#2434])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][358] -> [FAIL][359] ([i915#4349])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-4/igt@perf_pmu@busy-double-start@rcs0.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][360] -> [FAIL][361] ([i915#4349]) +4 other tests fail
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#3708])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#3708])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#9917])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#9917])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [FAIL][366] ([i915#12910]) +9 other tests fail
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
- shard-mtlp: NOTRUN -> [FAIL][367] ([i915#12910]) +9 other tests fail
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#4818])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][369] ([i915#4818])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#4818])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][371] ([i915#11713]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-6/igt@gem_exec_big@single.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-9/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [ABORT][373] ([i915#7975] / [i915#8213]) -> [PASS][374] +1 other test pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-dg2: [SKIP][375] ([i915#13459]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-7/igt@gem_lmem_swapping@verify-random.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglu: [SKIP][377] ([i915#4270]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-10/igt@gem_pxp@reject-modify-context-protection-off-2.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_workarounds@suspend-resume:
- shard-rkl: [INCOMPLETE][379] ([i915#13356]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-5/igt@gem_workarounds@suspend-resume.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt@gem_workarounds@suspend-resume.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [DMESG-FAIL][381] ([i915#12964]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-2/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][383] ([i915#3591]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][385] ([i915#13393]) -> [PASS][386] +1 other test pass
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-4/igt@i915_selftest@live@workarounds.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][387] ([i915#5138]) -> [PASS][388] +1 other test pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2:
- shard-rkl: [DMESG-WARN][389] ([i915#12964]) -> [PASS][390] +32 other tests pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-snb: [FAIL][391] ([i915#2346]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-glk: [DMESG-WARN][393] ([i915#118]) -> [PASS][394] +1 other test pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-glk8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-mtlp: [FAIL][395] ([i915#11989]) -> [PASS][396] +1 other test pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [FAIL][397] ([i915#6880]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][399] ([i915#9295]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@basic-rte:
- shard-dg1: [DMESG-WARN][401] ([i915#4423]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-12/igt@kms_pm_rpm@basic-rte.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt@kms_pm_rpm@basic-rte.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][403] ([i915#9519]) -> [PASS][404] +1 other test pass
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][405] ([i915#9196]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vblank@query-forked-hang:
- shard-rkl: [DMESG-WARN][407] ([i915#12917] / [i915#12964]) -> [PASS][408] +1 other test pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-4/igt@kms_vblank@query-forked-hang.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt@kms_vblank@query-forked-hang.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][409] ([i915#10393]) -> [PASS][410] +1 other test pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-1/igt@kms_vrr@negative-basic.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@busy-accuracy-2:
- shard-dg1: [FAIL][411] ([i915#4349]) -> [PASS][412] +1 other test pass
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-12/igt@perf_pmu@busy-accuracy-2.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt@perf_pmu@busy-accuracy-2.html
* igt@perf_pmu@busy-accuracy-2@vcs1:
- shard-mtlp: [FAIL][413] ([i915#4349]) -> [PASS][414] +3 other tests pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-1/igt@perf_pmu@busy-accuracy-2@vcs1.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt@perf_pmu@busy-accuracy-2@vcs1.html
* igt@perf_pmu@busy-accuracy-2@vecs1:
- shard-dg2: [FAIL][415] ([i915#4349]) -> [PASS][416] +4 other tests pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-1/igt@perf_pmu@busy-accuracy-2@vecs1.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt@perf_pmu@busy-accuracy-2@vecs1.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [FAIL][417] ([i915#4349]) -> [PASS][418] +1 other test pass
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@perf_pmu@most-busy-check-all.html
#### Warnings ####
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][419] ([i915#5493]) -> [DMESG-WARN][420] ([i915#5493]) +1 other test dmesg-warn
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: [SKIP][421] ([i915#4270]) -> [TIMEOUT][422] ([i915#12964])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-7/igt@gem_pxp@fail-invalid-protected-context.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: [TIMEOUT][423] ([i915#12917] / [i915#12964]) -> [SKIP][424] ([i915#4270]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-rkl: [SKIP][425] ([i915#4270]) -> [TIMEOUT][426] ([i915#12917] / [i915#12964]) +1 other test timeout
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-off-2.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_tiled_swapping@non-threaded:
- shard-glk: [ABORT][427] ([i915#13263] / [i915#13449]) -> [ABORT][428] ([i915#13449])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-glk5/igt@gem_tiled_swapping@non-threaded.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk9/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][429] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][430] ([i915#10131])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/index.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for Miscellaneous OA Refactors (rev2)
2025-01-06 3:46 [PATCH i-g-t v2 0/2] Miscellaneous OA Refactors Sai Teja Pottumuttu
` (4 preceding siblings ...)
2025-01-06 11:13 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-01-06 12:26 ` Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-06 12:26 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 89917 bytes --]
== Series Details ==
Series: Miscellaneous OA Refactors (rev2)
URL : https://patchwork.freedesktop.org/series/142773/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12390_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12390_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12390_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_12390_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: NOTRUN -> [FAIL][2] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_flip@flip-vs-suspend@b-dp2:
- shard-bmg: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_flip@flip-vs-suspend@b-dp2.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt@kms_flip@flip-vs-suspend@b-dp2.html
Known issues
------------
Here are the changes found in XEIGTPW_12390_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getstats:
- shard-dg2-set2: [PASS][5] -> [SKIP][6] ([Intel XE#2423]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@core_getstats.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@core_getstats.html
* igt@core_hotunplug@hotunplug-rescan:
- shard-dg2-set2: [PASS][7] -> [SKIP][8] ([Intel XE#1885]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: NOTRUN -> [FAIL][9] ([Intel XE#3249])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#3453])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@fbdev@info:
- shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#2134]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@fbdev@info.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@fbdev@info.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#3157])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][15] -> [FAIL][16] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2:
- shard-bmg: [PASS][17] -> [FAIL][18] ([Intel XE#3718])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-lnl: [PASS][19] -> [FAIL][20] ([Intel XE#3719]) +3 other tests fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#3279])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#3658])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1407]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +7 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +7 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#367]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#367])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +8 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][31] -> [SKIP][32] ([Intel XE#2136] / [Intel XE#2351]) +28 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#3432])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +32 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#1727])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#1727] / [Intel XE#3113])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#3124])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#306])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2252]) +5 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#373]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#307])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2341]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#3278]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2321]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2320]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1424]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [PASS][53] -> [SKIP][54] ([Intel XE#2423] / [i915#2575]) +251 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][56] -> [DMESG-WARN][57] ([Intel XE#877]) +3 other tests dmesg-warn
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2286])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#2141]) +2 other tests fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3383])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2244])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [PASS][62] -> [FAIL][63] ([Intel XE#2958])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt@kms_fbcon_fbt@psr-suspend.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2423] / [i915#2575]) +24 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#3321]) +2 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][71] -> [FAIL][72] ([Intel XE#301]) +11 other tests fail
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1421]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][74] ([Intel XE#301]) +2 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp4:
- shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [INCOMPLETE][77] ([Intel XE#2597]) +2 other tests incomplete
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#2882]) +4 other tests fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401] / [Intel XE#1745])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1401])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-6/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-default-mode:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1397]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#2351])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_frontbuffer_tracking@basic.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2311]) +15 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#651]) +7 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#651]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2136]) +78 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][94] ([Intel XE#2333]) +8 other tests fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2136]) +17 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#656]) +20 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2352]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2136] / [Intel XE#2231])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2313]) +22 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1469])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#653]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1503])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/igt@kms_hdr@static-toggle.html
* igt@kms_histogram@global-basic:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#3898])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@kms_histogram@global-basic.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#346])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2927])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2927])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc:
- shard-bmg: [PASS][107] -> [SKIP][108] ([Intel XE#3007]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-bmg: NOTRUN -> [INCOMPLETE][109] ([Intel XE#3663]) +1 other test incomplete
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#3007])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][115] -> [FAIL][116] ([Intel XE#718])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#908])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2499])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [PASS][119] -> [SKIP][120] ([Intel XE#2446]) +11 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2446])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2893])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#1489]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-cursor-render:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1406])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#3414] / [Intel XE#3904])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2413])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1435])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#362])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2450])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1499])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#756])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_drm_fdinfo@utilization-others-full-load:
- shard-lnl: NOTRUN -> [FAIL][136] ([Intel XE#3869])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/igt@xe_drm_fdinfo@utilization-others-full-load.html
* igt@xe_eudebug@basic-exec-queues:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-vm-access:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +6 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@xe_eudebug@basic-vm-access.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#3889])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug_online@single-step:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/igt@xe_eudebug_online@single-step.html
* igt@xe_evict@evict-cm-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#688]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/igt@xe_evict@evict-cm-threads-small-multi-vm.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: NOTRUN -> [FAIL][142] ([Intel XE#2364])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@xe_evict@evict-large-multi-vm-cm.html
- shard-dg2-set2: NOTRUN -> [FAIL][143] ([Intel XE#1600])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_balancer@twice-virtual-basic:
- shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#1130]) +472 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@xe_exec_balancer@twice-virtual-basic.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2322]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1392]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_basic@no-exec-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1130]) +30 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_exec_basic@no-exec-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#288]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html
* igt@xe_exec_threads@threads-hang-userptr-invalidate:
- shard-bmg: [PASS][150] -> [SKIP][151] ([Intel XE#1130]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@xe_exec_threads@threads-hang-userptr-invalidate.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@xe_exec_threads@threads-hang-userptr-invalidate.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [PASS][152] -> [SKIP][153] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_live_ktest@xe_bo.html
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1192])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-3/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-dg2-set2: [PASS][155] -> [SKIP][156] ([Intel XE#2229])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#378])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@xe_module_load@force-load.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2541] / [Intel XE#3573])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1420] / [Intel XE#2838])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-3/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2284])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#584])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-6/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-6/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-engines:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#944])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#944])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-4/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#944])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#3342])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2:
- shard-bmg: [INCOMPLETE][167] -> [PASS][168] +2 other tests pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][169] ([Intel XE#2882]) -> [PASS][170] +2 other tests pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][171] ([Intel XE#3321]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [FAIL][173] ([Intel XE#301]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_hdr@bpc-switch:
- shard-dg2-set2: [INCOMPLETE][175] -> [PASS][176]
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_hdr@bpc-switch.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3:
- shard-bmg: [FAIL][177] -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][179] ([Intel XE#718]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_sequence@get-forked-busy:
- shard-bmg: [INCOMPLETE][181] ([Intel XE#3313]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_sequence@get-forked-busy.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@kms_sequence@get-forked-busy.html
* igt@kms_setmode@basic@pipe-a-edp-1:
- shard-lnl: [FAIL][183] -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@kms_setmode@basic@pipe-a-edp-1.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_setmode@basic@pipe-a-edp-1.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][185] ([Intel XE#2883]) -> [PASS][186] +1 other test pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][187] ([Intel XE#1473]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_gt_freq@freq_suspend:
- shard-bmg: [INCOMPLETE][189] ([Intel XE#3865]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@xe_gt_freq@freq_suspend.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt@xe_gt_freq@freq_suspend.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-bmg: [INCOMPLETE][191] ([Intel XE#3088]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt@xe_pm_residency@gt-c6-freeze.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][193] ([Intel XE#958]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html
#### Warnings ####
* igt@kms_async_flips@crc:
- shard-bmg: [INCOMPLETE][195] ([Intel XE#3781]) -> [INCOMPLETE][196] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt@kms_async_flips@crc.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_async_flips@crc.html
* igt@kms_async_flips@crc-atomic:
- shard-dg2-set2: [INCOMPLETE][197] ([Intel XE#3781]) -> [SKIP][198] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_async_flips@crc-atomic.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_async_flips@crc-atomic.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: [SKIP][199] ([Intel XE#873]) -> [SKIP][200] ([Intel XE#2423] / [i915#2575])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][201] ([Intel XE#316]) -> [SKIP][202] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][203] ([Intel XE#316]) -> [SKIP][204] ([Intel XE#2136]) +9 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][205] ([Intel XE#1124]) -> [SKIP][206] ([Intel XE#2136]) +21 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][207] ([Intel XE#1124]) -> [SKIP][208] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][209] ([Intel XE#619]) -> [SKIP][210] ([Intel XE#2136] / [Intel XE#2351])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][211] ([Intel XE#2191]) -> [SKIP][212] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][213] ([Intel XE#367]) -> [SKIP][214] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][215] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][216] ([Intel XE#2136]) +30 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][217] ([Intel XE#2907]) -> [SKIP][218] ([Intel XE#2136]) +3 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][219] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][220] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][221] ([Intel XE#3442]) -> [SKIP][222] ([Intel XE#2136])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][223] ([Intel XE#314]) -> [SKIP][224] ([Intel XE#2136] / [Intel XE#2351])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][225] ([Intel XE#306]) -> [SKIP][226] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][227] ([Intel XE#373]) -> [SKIP][228] ([Intel XE#2423] / [i915#2575]) +28 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][229] ([Intel XE#307]) -> [SKIP][230] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [FAIL][231] ([Intel XE#1178]) -> [SKIP][232] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_content_protection@lic-type-0.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][233] ([Intel XE#1188]) -> [SKIP][234] ([Intel XE#2423] / [i915#2575])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_content_protection@uevent.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][235] ([Intel XE#308]) -> [SKIP][236] ([Intel XE#2423] / [i915#2575]) +7 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: [SKIP][237] ([Intel XE#323]) -> [SKIP][238] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][239] ([Intel XE#776]) -> [SKIP][240] ([Intel XE#2136]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][241] ([Intel XE#1137]) -> [SKIP][242] ([Intel XE#2423] / [i915#2575])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][243] ([Intel XE#455]) -> [SKIP][244] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][245] ([Intel XE#455]) -> [SKIP][246] ([Intel XE#2136]) +9 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][247] ([i915#5274]) -> [SKIP][248] ([Intel XE#2423] / [i915#2575])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_force_connector_basic@prune-stale-modes.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][249] ([Intel XE#651]) -> [SKIP][250] ([Intel XE#2136] / [Intel XE#2351]) +31 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
- shard-bmg: [DMESG-FAIL][251] ([Intel XE#877]) -> [FAIL][252] ([Intel XE#2333])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
- shard-bmg: [FAIL][253] ([Intel XE#2333]) -> [SKIP][254] ([Intel XE#2136] / [Intel XE#2231])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][255] ([Intel XE#658]) -> [SKIP][256] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][257] ([Intel XE#651]) -> [SKIP][258] ([Intel XE#2136]) +55 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][259] ([Intel XE#653]) -> [SKIP][260] ([Intel XE#2136] / [Intel XE#2351]) +29 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][261] ([Intel XE#1158]) -> [SKIP][262] ([Intel XE#2136])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][263] ([Intel XE#653]) -> [SKIP][264] ([Intel XE#2136]) +60 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-bmg: [SKIP][265] ([Intel XE#2313]) -> [SKIP][266] ([Intel XE#2136] / [Intel XE#2231])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][267] ([Intel XE#605]) -> [SKIP][268] ([Intel XE#2423] / [i915#2575])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_histogram@algo-color:
- shard-dg2-set2: [SKIP][269] ([Intel XE#3897]) -> [SKIP][270] ([Intel XE#2423] / [i915#2575])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_histogram@algo-color.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_histogram@algo-color.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][271] ([Intel XE#346]) -> [SKIP][272] ([Intel XE#2136]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: [SKIP][273] ([Intel XE#2927]) -> [SKIP][274] ([Intel XE#2136])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_joiner@basic-ultra-joiner.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][275] ([Intel XE#2925]) -> [SKIP][276] ([Intel XE#2136])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [FAIL][277] ([Intel XE#361]) -> [SKIP][278] ([Intel XE#2423] / [i915#2575])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][279] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][280] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][281] ([Intel XE#2938]) -> [SKIP][282] ([Intel XE#2136])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][283] ([Intel XE#870]) -> [SKIP][284] ([Intel XE#2136]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][285] ([Intel XE#1129]) -> [SKIP][286] ([Intel XE#2136])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][287] ([Intel XE#908]) -> [SKIP][288] ([Intel XE#2136])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][289] ([Intel XE#1489]) -> [SKIP][290] ([Intel XE#2136]) +22 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][291] ([Intel XE#1122]) -> [SKIP][292] ([Intel XE#2136]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][293] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][294] ([Intel XE#2136]) +28 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][295] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][296] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_psr@psr-dpms.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][297] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][298] ([Intel XE#2351]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][299] ([Intel XE#2939]) -> [SKIP][300] ([Intel XE#2136] / [Intel XE#2351])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][301] ([Intel XE#2939]) -> [SKIP][302] ([Intel XE#2136])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][303] ([Intel XE#3414]) -> [SKIP][304] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][305] ([Intel XE#1127]) -> [SKIP][306] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2-set2: [SKIP][307] ([Intel XE#455]) -> [SKIP][308] ([Intel XE#2423] / [i915#2575]) +21 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][309] ([Intel XE#362]) -> [SKIP][310] ([Intel XE#2423] / [i915#2575])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][311] ([Intel XE#2168]) -> [SKIP][312] ([Intel XE#2423] / [i915#2575])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_vrr@lobf.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][313] ([Intel XE#756]) -> [SKIP][314] ([Intel XE#2423] / [i915#2575])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: [SKIP][315] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][316] ([Intel XE#1130]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][317] ([Intel XE#1123]) -> [SKIP][318] ([Intel XE#1130]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][319] ([Intel XE#1126]) -> [SKIP][320] ([Intel XE#1130]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_drm_fdinfo@utilization-others-full-load:
- shard-dg2-set2: [FAIL][321] ([Intel XE#3869]) -> [SKIP][322] ([Intel XE#1130])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@xe_drm_fdinfo@utilization-others-full-load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_drm_fdinfo@utilization-others-full-load.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][323] ([Intel XE#2905]) -> [SKIP][324] ([Intel XE#1130]) +31 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@xe_eudebug@basic-close.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: [SKIP][325] ([Intel XE#3889]) -> [SKIP][326] ([Intel XE#1130]) +3 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][327] ([Intel XE#1600]) -> [SKIP][328] ([Intel XE#1130])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [TIMEOUT][329] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][330] ([Intel XE#1000])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@xe_evict@evict-threads-large.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: [SKIP][331] ([Intel XE#288]) -> [SKIP][332] ([Intel XE#1130]) +77 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: [SKIP][333] ([Intel XE#2360]) -> [SKIP][334] ([Intel XE#1130])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_oa@mi-rpc:
- shard-dg2-set2: [SKIP][335] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][336] ([Intel XE#1130]) +20 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@xe_oa@mi-rpc.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_oa@mi-rpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][337] ([Intel XE#979]) -> [SKIP][338] ([Intel XE#1130])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [FAIL][339] ([Intel XE#1173]) -> [SKIP][340] ([Intel XE#1061])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@xe_peer2peer@read.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][341] ([Intel XE#2284]) -> [SKIP][342] ([Intel XE#1130])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][343] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][344] ([Intel XE#1130]) +2 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][345] ([Intel XE#1607] / [Intel XE#1794]) -> [ABORT][346] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][347] ([Intel XE#944]) -> [SKIP][348] ([Intel XE#1130]) +7 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][349] ([Intel XE#3342]) -> [SKIP][350] ([Intel XE#1130]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[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#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2958
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288
[Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
[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#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781
[Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865
[Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897
[Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8174 -> IGTPW_12390
* Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2437-3241e60971d2944662d23a791a01a7c5cdc4230f
IGTPW_12390: 3d76579e0610ecd7ce7d37ccc3f5118deac9d2c6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642
xe-2437-3241e60971d2944662d23a791a01a7c5cdc4230f: 3241e60971d2944662d23a791a01a7c5cdc4230f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/index.html
[-- Attachment #2: Type: text/html, Size: 110416 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v2 1/2] tests/intel/xe_oa: Remove unused function arguments
2025-01-06 3:46 ` [PATCH i-g-t v2 1/2] tests/intel/xe_oa: Remove unused function arguments Sai Teja Pottumuttu
@ 2025-01-09 3:12 ` Dixit, Ashutosh
0 siblings, 0 replies; 10+ messages in thread
From: Dixit, Ashutosh @ 2025-01-09 3:12 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev, lucas.demarchi, jonathan.cavitt
On Sun, 05 Jan 2025 19:46:37 -0800, Sai Teja Pottumuttu wrote:
>
> The oa_exponent argument is unused in oa_report_is_periodic
> function. Thus remove it.
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v2 2/2] tests/intel/xe_oa: Remove hardcoded time heuristics
2025-01-06 3:46 ` [PATCH i-g-t v2 2/2] tests/intel/xe_oa: Remove hardcoded time heuristics Sai Teja Pottumuttu
@ 2025-01-09 22:28 ` Dixit, Ashutosh
2025-01-13 6:41 ` Pottumuttu, Sai Teja
0 siblings, 1 reply; 10+ messages in thread
From: Dixit, Ashutosh @ 2025-01-09 22:28 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev, lucas.demarchi, jonathan.cavitt
On Sun, 05 Jan 2025 19:46:38 -0800, Sai Teja Pottumuttu wrote:
>
Hi Sai Teja,
Thanks for the patch, mostly looks good but I have some usual nits.
> Some tests in xe_oa tests have hardcoded timing heuristics. Refactor it to
> make it more robust and reliable. The patch extends the wait time logically
> but usually it would take a single iteration for the required reports to be
> available so wait time doesn't change much.
>
> v2:
> - Extend commit message [Lucas]
> - Make wait function more generic [Lucas]
>
> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
> ---
> tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++-----
> 1 file changed, 25 insertions(+), 5 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index ad3526406..b271278d6 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -4367,6 +4367,29 @@ static void map_oa_buffer_forked_access(const struct drm_xe_engine_class_instanc
> munmap(vaddr, size);
> }
>
> +static void wait_for_periodic_reports(void *oa_vaddr,
Let's change this name to 'mmap_wait_for_periodic_reports', to highlight it
only applies to the mmap'd OA buffer case.
> + uint32_t n,
optional nit: move this to the previous line, I generally try to to optimize
vertical real estate.
> + const struct drm_xe_engine_class_instance *hwe)
> +{
> + uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000;
> + struct intel_xe_perf_metric_set *test_set = metric_set(hwe);
> + uint64_t fmt = test_set->perf_oa_format;
> + struct oa_format format = get_oa_format(fmt);
optional nit again, but delete the two temporary variables above, see
below.
> + uint32_t num_periodic_reports = 0;
> + uint32_t *reports;
> +
> + while (num_periodic_reports < n) {
> + usleep(100 * period_us);
I think this should be something like:
usleep(2 * n * period_us);
So the wait time should be a function of n (not constant like 100). Here
I'm assuming if we wait for '2 * n' periods, we should probably have n
periodic reports.
> + num_periodic_reports = 0;
> + for (reports = (uint32_t *)oa_vaddr;
> + reports[0] && oa_timestamp(reports, fmt);
> + reports += format.size) {
> + if (oa_report_is_periodic(reports))
> + num_periodic_reports++;
> + }
optional nit: I think this entire loop can just be:
num_periodic_reports = 0;
for (reports = (uint32_t *)oa_vaddr;
reports[0] && oa_timestamp(reports, fmt) && oa_report_is_periodic(reports);
reports += get_oa_format(test_set->perf_oa_format).size)
num_periodic_reports++;
Just a couple of general comments below, no need to change anything:
* The loop is a little 'funky' in that it goes over the mapped OA buffer
multiple times, even over previoulsy found reports. I think that is ok
for now.
* The other thing is that OA periodic reports should be generated as long
as DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT has been used in OA
properties. Both places where this function is called from has that, so
that should be ok.
* If HW somehow doesn't generate periodic reports we'll hang here. But that
is not expected, so leave as is and we'll deal with it later if we ever
hit that.
> + }
> +}
> +
> static void check_reports(void *oa_vaddr, uint32_t oa_size,
> const struct drm_xe_engine_class_instance *hwe)
> {
> @@ -4396,12 +4419,10 @@ static void check_reports_from_mapped_buffer(const struct drm_xe_engine_class_in
> {
> void *vaddr;
> uint32_t size;
> - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000;
>
> vaddr = map_oa_buffer(&size);
>
> - /* wait for approx 100 reports */
> - usleep(100 * period_us);
> + wait_for_periodic_reports(vaddr, 20, hwe);
I am wondering if we should make this 10 instead of 20, and also change 20
to 10 in check_reports().
> check_reports(vaddr, size, hwe);
>
> munmap(vaddr, size);
> @@ -4426,12 +4447,11 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_engine_class_insta
> };
> void *vaddr;
> uint32_t size;
> - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000;
>
> stream_fd = __perf_open(drm_fd, ¶m, false);
> vaddr = map_oa_buffer(&size);
>
> - usleep(100 * period_us);
> + wait_for_periodic_reports(vaddr, 20, hwe);
Here too.
> check_reports(vaddr, size, hwe);
>
> munmap(vaddr, size);
> --
> 2.34.1
>
Thanks.
--
Ashutosh
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v2 2/2] tests/intel/xe_oa: Remove hardcoded time heuristics
2025-01-09 22:28 ` Dixit, Ashutosh
@ 2025-01-13 6:41 ` Pottumuttu, Sai Teja
0 siblings, 0 replies; 10+ messages in thread
From: Pottumuttu, Sai Teja @ 2025-01-13 6:41 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
On 10-01-2025 03:58, Dixit, Ashutosh wrote:
> On Sun, 05 Jan 2025 19:46:38 -0800, Sai Teja Pottumuttu wrote:
>>
>
> Hi Sai Teja,
>
> Thanks for the patch, mostly looks good but I have some usual nits.
>
>> Some tests in xe_oa tests have hardcoded timing heuristics. Refactor it to
>> make it more robust and reliable. The patch extends the wait time logically
>> but usually it would take a single iteration for the required reports to be
>> available so wait time doesn't change much.
>>
>> v2:
>> - Extend commit message [Lucas]
>> - Make wait function more generic [Lucas]
>>
>> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
>> ---
>> tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++-----
>> 1 file changed, 25 insertions(+), 5 deletions(-)
>>
>> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
>> index ad3526406..b271278d6 100644
>> --- a/tests/intel/xe_oa.c
>> +++ b/tests/intel/xe_oa.c
>> @@ -4367,6 +4367,29 @@ static void map_oa_buffer_forked_access(const struct drm_xe_engine_class_instanc
>> munmap(vaddr, size);
>> }
>>
>> +static void wait_for_periodic_reports(void *oa_vaddr,
>
> Let's change this name to 'mmap_wait_for_periodic_reports', to highlight it
> only applies to the mmap'd OA buffer case.
Sure, made most of the suggested changes in v3. Some comments below.
>
>
>> + uint32_t n,
>
> optional nit: move this to the previous line, I generally try to to optimize
> vertical real estate.
>
>> + const struct drm_xe_engine_class_instance *hwe)
>> +{
>> + uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000;
>> + struct intel_xe_perf_metric_set *test_set = metric_set(hwe);
>> + uint64_t fmt = test_set->perf_oa_format;
>> + struct oa_format format = get_oa_format(fmt);
>
> optional nit again, but delete the two temporary variables above, see
> below.
In v3, I deleted oa_format, but kept fmt as its used at two places in
the loop.
>
>> + uint32_t num_periodic_reports = 0;
>> + uint32_t *reports;
>> +
>> + while (num_periodic_reports < n) {
>> + usleep(100 * period_us);
>
> I think this should be something like:
>
> usleep(2 * n * period_us);
>
> So the wait time should be a function of n (not constant like 100). Here
> I'm assuming if we wait for '2 * n' periods, we should probably have n
> periodic reports.
After some experiments, I finalized with 4 * n as that seems to be the
time to get n reports.
>
>> + num_periodic_reports = 0;
>> + for (reports = (uint32_t *)oa_vaddr;
>> + reports[0] && oa_timestamp(reports, fmt);
>> + reports += format.size) {
>> + if (oa_report_is_periodic(reports))
>> + num_periodic_reports++;
>> + }
>
> optional nit: I think this entire loop can just be:
>
> num_periodic_reports = 0;
> for (reports = (uint32_t *)oa_vaddr;
> reports[0] && oa_timestamp(reports, fmt) && oa_report_is_periodic(reports);
> reports += get_oa_format(test_set->perf_oa_format).size)
> num_periodic_reports++;
>
> Just a couple of general comments below, no need to change anything:
>
> * The loop is a little 'funky' in that it goes over the mapped OA buffer
> multiple times, even over previoulsy found reports. I think that is ok
> for now.
>
> * The other thing is that OA periodic reports should be generated as long
> as DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT has been used in OA
> properties. Both places where this function is called from has that, so
> that should be ok.
>
> * If HW somehow doesn't generate periodic reports we'll hang here. But that
> is not expected, so leave as is and we'll deal with it later if we ever
> hit that.
>
>> + }
>> +}
>> +
>> static void check_reports(void *oa_vaddr, uint32_t oa_size,
>> const struct drm_xe_engine_class_instance *hwe)
>> {
>> @@ -4396,12 +4419,10 @@ static void check_reports_from_mapped_buffer(const struct drm_xe_engine_class_in
>> {
>> void *vaddr;
>> uint32_t size;
>> - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000;
>>
>> vaddr = map_oa_buffer(&size);
>>
>> - /* wait for approx 100 reports */
>> - usleep(100 * period_us);
>> + wait_for_periodic_reports(vaddr, 20, hwe);
>
> I am wondering if we should make this 10 instead of 20, and also change 20
> to 10 in check_reports().
That makes sense, added a patch to reduce number of reports being
checked to 10 in v3.
>
>> check_reports(vaddr, size, hwe);
>>
>> munmap(vaddr, size);
>> @@ -4426,12 +4447,11 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_engine_class_insta
>> };
>> void *vaddr;
>> uint32_t size;
>> - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000;
>>
>> stream_fd = __perf_open(drm_fd, ¶m, false);
>> vaddr = map_oa_buffer(&size);
>>
>> - usleep(100 * period_us);
>> + wait_for_periodic_reports(vaddr, 20, hwe);
>
> Here too.
>
>> check_reports(vaddr, size, hwe);
>>
>> munmap(vaddr, size);
>> --
>> 2.34.1
>>
>
> Thanks.
> --
> Ashutosh
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-01-13 6:42 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-06 3:46 [PATCH i-g-t v2 0/2] Miscellaneous OA Refactors Sai Teja Pottumuttu
2025-01-06 3:46 ` [PATCH i-g-t v2 1/2] tests/intel/xe_oa: Remove unused function arguments Sai Teja Pottumuttu
2025-01-09 3:12 ` Dixit, Ashutosh
2025-01-06 3:46 ` [PATCH i-g-t v2 2/2] tests/intel/xe_oa: Remove hardcoded time heuristics Sai Teja Pottumuttu
2025-01-09 22:28 ` Dixit, Ashutosh
2025-01-13 6:41 ` Pottumuttu, Sai Teja
2025-01-06 7:23 ` ✓ i915.CI.BAT: success for Miscellaneous OA Refactors (rev2) Patchwork
2025-01-06 7:42 ` ✓ Xe.CI.BAT: " Patchwork
2025-01-06 11:13 ` ✗ i915.CI.Full: failure " Patchwork
2025-01-06 12:26 ` ✗ 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