* [PATCH i-g-t v3 0/3] Miscellaneous OA Refactors
@ 2025-01-13 6:19 Sai Teja Pottumuttu
2025-01-13 6:19 ` [PATCH i-g-t v3 1/3] tests/intel/xe_oa: Remove unused function arguments Sai Teja Pottumuttu
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Sai Teja Pottumuttu @ 2025-01-13 6:19 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu
The patch series cleans up some unused arguments and also removes
hardcoded time heuristics. It also reduces the number of mmap periodic
reports being checked.
Sai Teja Pottumuttu (3):
tests/intel/xe_oa: Remove unused function arguments
tests/intel/xe_oa: Reduce the number of mmap reports checked
tests/intel/xe_oa: Remove hardcoded time heuristics
tests/intel/xe_oa.c | 51 ++++++++++++++++++++++++++++++---------------
1 file changed, 34 insertions(+), 17 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v3 1/3] tests/intel/xe_oa: Remove unused function arguments
2025-01-13 6:19 [PATCH i-g-t v3 0/3] Miscellaneous OA Refactors Sai Teja Pottumuttu
@ 2025-01-13 6:19 ` Sai Teja Pottumuttu
2025-01-13 6:19 ` [PATCH i-g-t v3 2/3] tests/intel/xe_oa: Reduce the number of mmap reports checked Sai Teja Pottumuttu
` (5 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Sai Teja Pottumuttu @ 2025-01-13 6:19 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu, 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 v3 2/3] tests/intel/xe_oa: Reduce the number of mmap reports checked
2025-01-13 6:19 [PATCH i-g-t v3 0/3] Miscellaneous OA Refactors Sai Teja Pottumuttu
2025-01-13 6:19 ` [PATCH i-g-t v3 1/3] tests/intel/xe_oa: Remove unused function arguments Sai Teja Pottumuttu
@ 2025-01-13 6:19 ` Sai Teja Pottumuttu
2025-01-13 19:22 ` Dixit, Ashutosh
2025-01-13 6:19 ` [PATCH i-g-t v3 3/3] tests/intel/xe_oa: Remove hardcoded time heuristics Sai Teja Pottumuttu
` (4 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Sai Teja Pottumuttu @ 2025-01-13 6:19 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu
Currently, 20 mmap periodic reports are checked which seems unnecessary,
reduce it to 10.
Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
---
tests/intel/xe_oa.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index ad3526406..cd081ecff 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -4378,7 +4378,7 @@ static void check_reports(void *oa_vaddr, uint32_t oa_size,
uint32_t timer_reports = 0;
for (reports = (uint32_t *)oa_vaddr;
- timer_reports < 20 && reports[0] && oa_timestamp(reports, fmt);
+ timer_reports < 10 && reports[0] && oa_timestamp(reports, fmt);
reports += report_words) {
if (!oa_report_is_periodic(reports))
continue;
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v3 3/3] tests/intel/xe_oa: Remove hardcoded time heuristics
2025-01-13 6:19 [PATCH i-g-t v3 0/3] Miscellaneous OA Refactors Sai Teja Pottumuttu
2025-01-13 6:19 ` [PATCH i-g-t v3 1/3] tests/intel/xe_oa: Remove unused function arguments Sai Teja Pottumuttu
2025-01-13 6:19 ` [PATCH i-g-t v3 2/3] tests/intel/xe_oa: Reduce the number of mmap reports checked Sai Teja Pottumuttu
@ 2025-01-13 6:19 ` Sai Teja Pottumuttu
2025-01-13 19:37 ` Dixit, Ashutosh
2025-01-13 21:17 ` ✓ i915.CI.BAT: success for Miscellaneous OA Refactors (rev3) Patchwork
` (3 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Sai Teja Pottumuttu @ 2025-01-13 6:19 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu
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]
v3:
- Change wait function name [Ashutosh]
- Address nits [Ashutosh]
Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
---
tests/intel/xe_oa.c | 27 ++++++++++++++++++++++-----
1 file changed, 22 insertions(+), 5 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index cd081ecff..df7fa3229 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -4367,6 +4367,26 @@ static void map_oa_buffer_forked_access(const struct drm_xe_engine_class_instanc
munmap(vaddr, size);
}
+static void mmap_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;
+ uint32_t num_periodic_reports = 0;
+ uint32_t *reports;
+
+ while (num_periodic_reports < n) {
+ usleep(4 * n * period_us);
+ 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(fmt).size) {
+ num_periodic_reports++;
+ }
+ }
+}
+
static void check_reports(void *oa_vaddr, uint32_t oa_size,
const struct drm_xe_engine_class_instance *hwe)
{
@@ -4396,12 +4416,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);
+ mmap_wait_for_periodic_reports(vaddr, 10, hwe);
check_reports(vaddr, size, hwe);
munmap(vaddr, size);
@@ -4426,12 +4444,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);
+ mmap_wait_for_periodic_reports(vaddr, 10, hwe);
check_reports(vaddr, size, hwe);
munmap(vaddr, size);
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v3 2/3] tests/intel/xe_oa: Reduce the number of mmap reports checked
2025-01-13 6:19 ` [PATCH i-g-t v3 2/3] tests/intel/xe_oa: Reduce the number of mmap reports checked Sai Teja Pottumuttu
@ 2025-01-13 19:22 ` Dixit, Ashutosh
0 siblings, 0 replies; 10+ messages in thread
From: Dixit, Ashutosh @ 2025-01-13 19:22 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
On Sun, 12 Jan 2025 22:19:48 -0800, Sai Teja Pottumuttu wrote:
>
> Currently, 20 mmap periodic reports are checked which seems unnecessary,
> reduce it to 10.
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
>
> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
> ---
> tests/intel/xe_oa.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index ad3526406..cd081ecff 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -4378,7 +4378,7 @@ static void check_reports(void *oa_vaddr, uint32_t oa_size,
> uint32_t timer_reports = 0;
>
> for (reports = (uint32_t *)oa_vaddr;
> - timer_reports < 20 && reports[0] && oa_timestamp(reports, fmt);
> + timer_reports < 10 && reports[0] && oa_timestamp(reports, fmt);
> reports += report_words) {
> if (!oa_report_is_periodic(reports))
> continue;
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v3 3/3] tests/intel/xe_oa: Remove hardcoded time heuristics
2025-01-13 6:19 ` [PATCH i-g-t v3 3/3] tests/intel/xe_oa: Remove hardcoded time heuristics Sai Teja Pottumuttu
@ 2025-01-13 19:37 ` Dixit, Ashutosh
0 siblings, 0 replies; 10+ messages in thread
From: Dixit, Ashutosh @ 2025-01-13 19:37 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
On Sun, 12 Jan 2025 22:19:49 -0800, Sai Teja Pottumuttu wrote:
>
> 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]
>
> v3:
> - Change wait function name [Ashutosh]
> - Address nits [Ashutosh]
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
> ---
> tests/intel/xe_oa.c | 27 ++++++++++++++++++++++-----
> 1 file changed, 22 insertions(+), 5 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index cd081ecff..df7fa3229 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -4367,6 +4367,26 @@ static void map_oa_buffer_forked_access(const struct drm_xe_engine_class_instanc
> munmap(vaddr, size);
> }
>
> +static void mmap_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;
> + uint32_t num_periodic_reports = 0;
> + uint32_t *reports;
> +
> + while (num_periodic_reports < n) {
> + usleep(4 * n * period_us);
> + 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(fmt).size) {
> + num_periodic_reports++;
> + }
> + }
> +}
> +
> static void check_reports(void *oa_vaddr, uint32_t oa_size,
> const struct drm_xe_engine_class_instance *hwe)
> {
> @@ -4396,12 +4416,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);
> + mmap_wait_for_periodic_reports(vaddr, 10, hwe);
> check_reports(vaddr, size, hwe);
>
> munmap(vaddr, size);
> @@ -4426,12 +4444,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);
> + mmap_wait_for_periodic_reports(vaddr, 10, hwe);
> check_reports(vaddr, size, hwe);
>
> munmap(vaddr, size);
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for Miscellaneous OA Refactors (rev3)
2025-01-13 6:19 [PATCH i-g-t v3 0/3] Miscellaneous OA Refactors Sai Teja Pottumuttu
` (2 preceding siblings ...)
2025-01-13 6:19 ` [PATCH i-g-t v3 3/3] tests/intel/xe_oa: Remove hardcoded time heuristics Sai Teja Pottumuttu
@ 2025-01-13 21:17 ` Patchwork
2025-01-13 21:18 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-13 21:17 UTC (permalink / raw)
To: Pottumuttu, Sai Teja; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4065 bytes --]
== Series Details ==
Series: Miscellaneous OA Refactors (rev3)
URL : https://patchwork.freedesktop.org/series/142773/
State : success
== Summary ==
CI Bug Log - changes from IGT_8189 -> IGTPW_12433
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12433 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-apl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-apl-1/igt@dmabuf@all-tests.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: NOTRUN -> [ABORT][5] ([i915#12919]) +1 other test abort
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][6] -> [DMESG-FAIL][7] ([i915#13393]) +1 other test dmesg-fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [PASS][8] -> [DMESG-FAIL][9] ([i915#13393]) +1 other test dmesg-fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_module_load@load:
- {bat-mtlp-9}: [DMESG-WARN][10] -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-9/igt@i915_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live@workarounds:
- {bat-mtlp-9}: [DMESG-FAIL][12] ([i915#13393]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
- {bat-arls-6}: [DMESG-FAIL][14] ([i915#13393]) -> [PASS][15] +1 other test pass
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-arls-6/igt@i915_selftest@live@workarounds.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-arls-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8189 -> IGTPW_12433
CI-20190529: 20190529
CI_DRM_15948: 20058aae3e619821197cd32b736893f1d7917ba3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12433: 8035b8a8167171e8443e4e89f41878445c51f814 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8189: e036190dc1730ecb94cb393f88378e734db4b1d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/index.html
[-- Attachment #2: Type: text/html, Size: 5127 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Miscellaneous OA Refactors (rev3)
2025-01-13 6:19 [PATCH i-g-t v3 0/3] Miscellaneous OA Refactors Sai Teja Pottumuttu
` (3 preceding siblings ...)
2025-01-13 21:17 ` ✓ i915.CI.BAT: success for Miscellaneous OA Refactors (rev3) Patchwork
@ 2025-01-13 21:18 ` Patchwork
2025-01-15 7:13 ` ✗ i915.CI.Full: failure " Patchwork
2025-01-17 8:00 ` ✗ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-13 21:18 UTC (permalink / raw)
To: Pottumuttu, Sai Teja; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2626 bytes --]
== Series Details ==
Series: Miscellaneous OA Refactors (rev3)
URL : https://patchwork.freedesktop.org/series/142773/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8189_BAT -> XEIGTPW_12433_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12433_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_exec_basic@twice-bindexecqueue-rebind:
- bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][3] -> [SKIP][4] ([Intel XE#1192]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8189 -> IGTPW_12433
* Linux: xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567 -> xe-2480-20058aae3e619821197cd32b736893f1d7917ba3
IGTPW_12433: 8035b8a8167171e8443e4e89f41878445c51f814 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8189: e036190dc1730ecb94cb393f88378e734db4b1d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567: 19b8afc5609e9ae7b410bdb028b4aaf83656b567
xe-2480-20058aae3e619821197cd32b736893f1d7917ba3: 20058aae3e619821197cd32b736893f1d7917ba3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/index.html
[-- Attachment #2: Type: text/html, Size: 3321 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for Miscellaneous OA Refactors (rev3)
2025-01-13 6:19 [PATCH i-g-t v3 0/3] Miscellaneous OA Refactors Sai Teja Pottumuttu
` (4 preceding siblings ...)
2025-01-13 21:18 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-01-15 7:13 ` Patchwork
2025-01-17 8:00 ` ✗ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-15 7:13 UTC (permalink / raw)
To: Pottumuttu, Sai Teja; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100253 bytes --]
== Series Details ==
Series: Miscellaneous OA Refactors (rev3)
URL : https://patchwork.freedesktop.org/series/142773/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8189_full -> IGTPW_12433_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12433_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12433_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_12433/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_12433_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-10/igt@gem_tiled_swapping@non-threaded.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-2/igt@gem_tiled_swapping@non-threaded.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [INCOMPLETE][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
* igt@kms_plane_cursor@overlay:
- shard-mtlp: [PASS][6] -> [DMESG-WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-4/igt@kms_plane_cursor@overlay.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-8/igt@kms_plane_cursor@overlay.html
* igt@kms_pm_rpm@pm-caching:
- shard-rkl: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@kms_pm_rpm@pm-caching.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-tglu: [PASS][9] -> [ABORT][10] +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-7/igt@kms_vblank@ts-continuation-dpms-suspend.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@perf_pmu@module-unload:
- shard-mtlp: [PASS][11] -> [INCOMPLETE][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-6/igt@perf_pmu@module-unload.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-7/igt@perf_pmu@module-unload.html
Known issues
------------
Here are the changes found in IGTPW_12433_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8411]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#8411])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#11078])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#11078])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#11078])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][18] ([i915#11814] / [i915#11815] / [i915#9413])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8414]) +6 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8414]) +14 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-6/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8414]) +25 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#3281]) +7 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-7/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#7697])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#7697])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#7697])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [PASS][28] -> [ABORT][29] ([i915#13427])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#6335])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: NOTRUN -> [DMESG-FAIL][31] ([i915#12964]) +1 other test dmesg-fail
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][32] ([i915#12353]) +1 other test incomplete
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#8555])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#8555])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][35] ([i915#1099]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb5/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#280]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@gem_ctx_sseu@invalid-args.html
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#280])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#280])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][39] ([i915#10030] / [i915#7975] / [i915#8213])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-mtlp: [PASS][40] -> [ABORT][41] ([i915#13193])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-7/igt@gem_eio@in-flight-contexts-10ms.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][42] -> [DMESG-WARN][43] ([i915#13363])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-9/igt@gem_eio@kms.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt@gem_eio@kms.html
- shard-dg1: [PASS][44] -> [FAIL][45] ([i915#5784])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt@gem_eio@kms.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][46] -> [FAIL][47] ([i915#12543] / [i915#5784])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-14/igt@gem_eio@reset-stress.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4771])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4812]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4771])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4525]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4525])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#6334]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3539])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@gem_exec_flush@basic-wb-ro-before-default.html
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281]) +13 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3281]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4812]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][61] ([i915#7975] / [i915#8213]) +2 other tests abort
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [PASS][62] -> [ABORT][63] ([i915#7975] / [i915#8213]) +1 other test abort
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-13/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4860]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-y.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4860])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4860])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#2190])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#2190])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#4613] / [i915#7582])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#12193]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4565]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-glk: NOTRUN -> [SKIP][73] ([i915#4613]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk6/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: NOTRUN -> [TIMEOUT][74] ([i915#5493]) +1 other test timeout
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#4613]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4077]) +12 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@hang:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4077]) +12 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@gem_mmap_gtt@hang.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4083]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@gem_mmap_wc@write-read.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3282]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3282]) +6 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +8 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@gem_pread@snoop.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12964])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][85] ([i915#12917] / [i915#12964]) +3 other tests timeout
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4270]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +9 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4885])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4885])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4079]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#3297])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][93] ([i915#3323])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#3297])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][96] +405 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb1/igt@gem_vm_create@invalid-create.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][97] ([i915#13356])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk6/igt@gem_workarounds@suspend-resume-context.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: [PASS][98] -> [INCOMPLETE][99] ([i915#13356])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk6/igt@gem_workarounds@suspend-resume-fd.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk4/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen3_mixed_blits:
- shard-dg2: NOTRUN -> [SKIP][100] +14 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@gen3_mixed_blits.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#2527]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#2856])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@secure-batches:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-2/igt@gen9_exec_parse@secure-batches.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#8399])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt@i915_pm_freq_api@freq-reset.html
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#8399])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#8399])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#6590]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [PASS][110] -> [FAIL][111] ([i915#12942]) +1 other test fail
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#11681] / [i915#6621])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#11681])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@i915_pm_rps@thresholds.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4387])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#4387])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#6188])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][119] ([i915#7443])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
- shard-glk: NOTRUN -> [INCOMPLETE][120] ([i915#4817]) +1 other test incomplete
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk6/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#7707])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#4212])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4215])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4215] / [i915#5190])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4212]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4212]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][127] ([i915#12761]) +1 other test incomplete
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk8/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#8709]) +7 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#8709]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#12967] / [i915#6228])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#12967])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#9531])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#9531])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@modeset-transition-fencing:
- shard-glk: [PASS][134] -> [FAIL][135] ([i915#12238])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk3/igt@kms_atomic_transition@modeset-transition-fencing.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing.html
* igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs:
- shard-glk: [PASS][136] -> [FAIL][137] ([i915#11859])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk3/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][140] -> [FAIL][141] ([i915#11808]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#5286]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5286]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#5286]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#5286]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][146] -> [FAIL][147] ([i915#5138])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3638]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#3638]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#5190]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +17 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][153] +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#12313]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#6095]) +127 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][157] +446 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6095]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#12313])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#12313])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#6095]) +19 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#12805])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2: [PASS][163] -> [INCOMPLETE][164] ([i915#12796])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#6095]) +24 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][166] ([i915#12796]) +1 other test incomplete
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#6095]) +12 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#12313])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#6095]) +83 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-dp-4:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#10307] / [i915#6095]) +131 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-dp-4.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3742])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#7213]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +11 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +7 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +7 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +9 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#9424])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3299])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-10/igt@kms_content_protection@legacy.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#7118] / [i915#9424])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][183] ([i915#7173])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#9424]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8814])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#13049]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555]) +6 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#13049])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555]) +9 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#13049]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#13049])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][193] ([i915#12964]) +19 other tests dmesg-warn
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#12358] / [i915#7882])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk5/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][195] ([i915#12358])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#13046] / [i915#5354]) +4 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][197] +29 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#9809]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#4103])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#4103] / [i915#4213]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#4103] / [i915#4213])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][202] -> [FAIL][203] ([i915#2346]) +1 other test fail
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-snb: NOTRUN -> [FAIL][204] ([i915#2346])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#9723])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#9723])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#9723])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#1257])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt@kms_dp_aux_dev.html
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#1257])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#3840])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#3955])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#3469])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-9/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2065] / [i915#4854])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#1839])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@kms_feature_discovery@display-4x.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#1839])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#9337])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#9934]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][218] -> [FAIL][219] ([i915#11989]) +1 other test fail
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#3637]) +3 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#8381]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#9934]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#9934]) +8 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#12745] / [i915#1982] / [i915#4839])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk9/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][225] ([i915#1982] / [i915#4839])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk9/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#3637]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@dpms-off-confusion:
- shard-glk: NOTRUN -> [DMESG-WARN][227] ([i915#118]) +1 other test dmesg-warn
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk8/igt@kms_flip@dpms-off-confusion.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][228] ([i915#12745] / [i915#4839]) +1 other test incomplete
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk7/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][229] ([i915#12745]) +1 other test incomplete
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1:
- shard-mtlp: [PASS][230] -> [FAIL][231] ([i915#11989]) +2 other tests fail
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-2/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1:
- shard-tglu: [PASS][232] -> [FAIL][233] ([i915#11989]) +2 other tests fail
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-2/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1:
- shard-snb: NOTRUN -> [FAIL][234] ([i915#11989]) +2 other tests fail
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#2672]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672] / [i915#3555])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +4 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +6 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672]) +7 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672]) +4 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#5274])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-rkl: [PASS][246] -> [DMESG-WARN][247] ([i915#12964]) +49 other tests dmesg-warn
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
- shard-dg2: NOTRUN -> [FAIL][248] ([i915#6880]) +1 other test fail
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [DMESG-WARN][249] ([i915#12917] / [i915#12964])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#8708])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-snb: [PASS][251] -> [SKIP][252]
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][253] +50 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][254] +29 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#5354]) +39 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#10055])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#8708]) +21 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu: NOTRUN -> [SKIP][258] +62 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#1825]) +36 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#9766])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#9766])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#8708]) +22 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#3023]) +17 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#3458]) +19 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#1825]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +26 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#6118])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#12713])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [PASS][271] -> [SKIP][272] ([i915#3555] / [i915#8228])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#10656])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@kms_joiner@basic-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#10656])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#12388])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#12339])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#12339])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#12394])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#4816])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-64:
- shard-mtlp: [PASS][280] -> [DMESG-WARN][281] ([i915#1982])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-4/igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-64.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-8/igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-64.html
* igt@kms_plane_lowres@tiling-none:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#11614] / [i915#3582]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-5/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-5/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8821])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#6953] / [i915#9423])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#12247]) +7 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#12247]) +9 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#12247]) +8 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#12247] / [i915#6953] / [i915#9423])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#12247] / [i915#9423])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/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: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#6953])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/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-d:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#12247]) +13 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#12247]) +7 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#12247] / [i915#3555])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-dg1: [PASS][296] -> [DMESG-WARN][297] ([i915#4423]) +2 other tests dmesg-warn
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#5354])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#12343])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#5354])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#9812])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#9685]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#5978])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#3361])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#9340])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#8430])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#12916])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#9519])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#9519]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][310] -> [SKIP][311] ([i915#9519])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#9519])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][313] -> [SKIP][314] ([i915#12916]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#6524])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#6524]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][317] ([i915#11520]) +9 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#11520]) +10 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#11520]) +7 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#11520]) +5 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][321] ([i915#11520]) +8 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#11520]) +10 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#11520]) +2 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#9683]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#9683])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#9683])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#9688]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-6/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#1072] / [i915#9732]) +22 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
- shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#9732]) +7 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-primary-render:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#9732]) +17 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-4/igt@kms_psr@psr-primary-render.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +26 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +29 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#12755] / [i915#5190])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#5289])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#5289])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_selftest@drm_framebuffer:
- shard-snb: NOTRUN -> [ABORT][336] ([i915#13179]) +1 other test abort
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb7/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#3555]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#3555]) +2 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#11920])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][340] ([i915#11920])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#9906])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#9906])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#9906])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][344] ([i915#9906])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#2437])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][346] ([i915#2437]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][347] ([i915#2437]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk6/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#2434])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-idle@vcs1:
- shard-mtlp: [PASS][349] -> [FAIL][350] ([i915#4349]) +1 other test fail
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-7/igt@perf_pmu@busy-idle@vcs1.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-5/igt@perf_pmu@busy-idle@vcs1.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][351] ([i915#8516])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#8516])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@perf_pmu@render-node-busy-idle@bcs0:
- shard-dg1: [PASS][353] -> [FAIL][354] ([i915#4349]) +5 other tests fail
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt@perf_pmu@render-node-busy-idle@bcs0.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@perf_pmu@render-node-busy-idle@bcs0.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][355] ([i915#3291] / [i915#3708]) +1 other test skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@prime_vgem@basic-write.html
- shard-dg1: NOTRUN -> [SKIP][356] ([i915#3708])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#3708] / [i915#4077])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#9917])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#9917])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][360] ([i915#12910]) +8 other tests fail
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-9/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
#### Possible fixes ####
* igt@gem_exec_schedule@fairslice:
- shard-rkl: [DMESG-WARN][361] ([i915#12964]) -> [PASS][362] +17 other tests pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-2/igt@gem_exec_schedule@fairslice.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@gem_exec_schedule@fairslice.html
* igt@gem_exec_suspend@basic-s3@lmem0:
- shard-dg1: [ABORT][363] -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt@gem_exec_suspend@basic-s3@lmem0.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@gem_exec_suspend@basic-s3@lmem0.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-rkl: [DMESG-WARN][365] ([i915#12917] / [i915#12964]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-4/igt@gem_mmap_gtt@medium-copy-odd.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [DMESG-FAIL][367] ([i915#12964]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [ABORT][369] ([i915#5566]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk5/igt@gen9_exec_parse@allowed-all.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk2/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][371] ([i915#9820]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [ABORT][373] ([i915#9820]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][375] ([i915#5138]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-tglu: [FAIL][377] ([i915#2346]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-snb: [FAIL][379] ([i915#2346]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-dg2: [FAIL][381] ([i915#10826]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-7/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@plain-flip-ts-check@b-edp1:
- shard-mtlp: [FAIL][383] ([i915#11989]) -> [PASS][384] +3 other tests pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check@b-edp1.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check@b-edp1.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][385] ([i915#12916]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-mtlp: [FAIL][387] -> [PASS][388] +1 other test pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-1/igt@kms_psr@psr2-cursor-plane-onoff.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-3/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][389] ([i915#5465]) -> [PASS][390] +2 other tests pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@perf_pmu@busy:
- shard-dg2: [FAIL][391] ([i915#4349]) -> [PASS][392] +2 other tests pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-10/igt@perf_pmu@busy.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt@perf_pmu@busy.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-tglu: [FAIL][393] ([i915#4349]) -> [PASS][394] +2 other tests pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-4/igt@perf_pmu@busy-accuracy-98@rcs0.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-5/igt@perf_pmu@busy-accuracy-98@rcs0.html
#### Warnings ####
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: [TIMEOUT][395] ([i915#12964]) -> [SKIP][396] ([i915#4270])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-rkl: [SKIP][397] ([i915#4270]) -> [TIMEOUT][398] ([i915#12917] / [i915#12964])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-2.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: [TIMEOUT][399] ([i915#12917] / [i915#12964]) -> [SKIP][400] ([i915#4270])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-2/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [ABORT][401] ([i915#13493] / [i915#9820]) -> [DMESG-WARN][402] ([i915#13475])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][403] ([i915#10131] / [i915#13493] / [i915#9820]) -> [ABORT][404] ([i915#10131])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][405] ([i915#9820]) -> [DMESG-WARN][406] ([i915#13475])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@legacy:
- shard-dg2: [SKIP][407] ([i915#7118] / [i915#9424]) -> [TIMEOUT][408] ([i915#7173])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-11/igt@kms_content_protection@legacy.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][409] ([i915#9424]) -> [SKIP][410] ([i915#9433])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt@kms_content_protection@mei-interface.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][411] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][412] ([i915#12745] / [i915#4839])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg1: [SKIP][413] ([i915#3458] / [i915#4423]) -> [SKIP][414] ([i915#3458])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-dg1: [SKIP][415] ([i915#4423]) -> [SKIP][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][417] ([i915#8708]) -> [SKIP][418] ([i915#4423] / [i915#8708])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][419] ([i915#4423] / [i915#8708]) -> [SKIP][420] ([i915#8708])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-dg1: [SKIP][421] -> [SKIP][422] ([i915#4423])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][423] ([i915#12713]) -> [SKIP][424] ([i915#1187] / [i915#12713])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][425] ([i915#9519]) -> [SKIP][426] ([i915#12916])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg1: [SKIP][427] ([i915#4423] / [i915#5289]) -> [SKIP][428] ([i915#5289])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#11815]:
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/index.html
[-- Attachment #2: Type: text/html, Size: 111258 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for Miscellaneous OA Refactors (rev3)
2025-01-13 6:19 [PATCH i-g-t v3 0/3] Miscellaneous OA Refactors Sai Teja Pottumuttu
` (5 preceding siblings ...)
2025-01-15 7:13 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-01-17 8:00 ` Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-17 8:00 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 103456 bytes --]
== Series Details ==
Series: Miscellaneous OA Refactors (rev3)
URL : https://patchwork.freedesktop.org/series/142773/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8189_full -> XEIGTPW_12433_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12433_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12433_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_12433_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1:
- shard-lnl: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html
New tests
---------
New tests have been introduced between XEIGT_8189_full and XEIGTPW_12433_full:
### New IGT tests (26) ###
* igt@kms_atomic@crtc-invalid-params-fence@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.56] s
* igt@kms_cursor_crc@cursor-onscreen-64x64@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.45] s
* igt@kms_cursor_crc@cursor-onscreen-64x64@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.21] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [4.01] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [3.58] s
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_flip@2x-flip-vs-rmfb@ab-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [5.36] s
* igt@kms_flip@2x-flip-vs-rmfb@ac-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [5.37] s
* igt@kms_flip@2x-flip-vs-rmfb@ad-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [5.35] s
* igt@kms_flip@2x-flip-vs-rmfb@bc-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [5.33] s
* igt@kms_flip@2x-flip-vs-rmfb@bd-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [5.33] s
* igt@kms_flip@2x-flip-vs-rmfb@cd-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [5.38] s
* igt@kms_flip@basic-flip-vs-dpms@a-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.81] s
* igt@kms_flip@basic-flip-vs-dpms@b-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
* igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.75] s
* igt@kms_flip@busy-flip@a-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.80] s
* igt@kms_flip@busy-flip@b-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.75] s
* igt@kms_flip@busy-flip@c-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.70] s
* igt@kms_flip@busy-flip@d-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_flip@nonexisting-fb@a-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.31] s
* igt@kms_flip@nonexisting-fb@b-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
* igt@kms_flip@nonexisting-fb@c-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
* igt@kms_flip@nonexisting-fb@d-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.20] s
* igt@kms_vblank@query-busy-hang@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.63] s
* igt@kms_vblank@query-busy-hang@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.40] s
Known issues
------------
Here are the changes found in XEIGTPW_12433_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug:
- shard-lnl: NOTRUN -> [ABORT][3] ([Intel XE#3914])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt@core_hotunplug@hotreplug.html
* igt@fbdev@eof:
- shard-bmg: [PASS][4] -> [SKIP][5] ([Intel XE#2134])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-8/igt@fbdev@eof.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@fbdev@eof.html
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1125])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@unused-offsets:
- shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#3007]) +8 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt@kms_addfb_basic@unused-offsets.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_addfb_basic@unused-offsets.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#316]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-1/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#619])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#607])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +10 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2191])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2191]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) +5 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2907]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +40 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-5/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +167 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#3862])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-lnl: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#3862])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3432]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2669]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#3124]) +1 other test incomplete
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#306]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@degamma:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#306])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +16 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#3278])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1178])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2390])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#307])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_content_protection@dp-mst-type-1.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +5 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1188]) +1 other test fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1424]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2291])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2286])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-legacy:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][51] ([Intel XE#877])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipa-toggle:
- shard-bmg: [PASS][52] -> [INCOMPLETE][53] ([Intel XE#3226])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#2291])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#323]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#3070])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#1695])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#776]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#703])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-busy-flip:
- shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2316]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt@kms_flip@2x-busy-flip.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1421]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][65] ([Intel XE#2882]) +1 other test fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#301]) +3 other tests fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [PASS][67] -> [FAIL][68] ([Intel XE#886]) +1 other test fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#2882])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#2882] / [Intel XE#3288])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#3288] / [Intel XE#3321])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
- shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#3321])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#2635])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_flip@wf_vblank-ts-check.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@d-dp2:
- shard-bmg: [PASS][79] -> [INCOMPLETE][80] ([Intel XE#2049])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_flip@wf_vblank-ts-check@d-dp2.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check@d-dp2.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#651]) +44 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2311]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#2333]) +1 other test fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#651]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#656]) +13 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2313]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2312])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1158])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#653]) +42 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: NOTRUN -> [ABORT][93] ([Intel XE#2625])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [ABORT][94] ([Intel XE#4048])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1503])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2934])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2925])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2927])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#356])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#3007])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][101] ([Intel XE#616]) +3 other tests fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#3307])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2763] / [Intel XE#455]) +6 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +11 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#870]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#718]) +1 other test fail
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-bmg: [PASS][110] -> [SKIP][111] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_pm_dc@dc5-dpms-negative.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#2446])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1439] / [Intel XE#3141])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1489]) +11 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2893]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1489]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1122]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1406]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2850] / [Intel XE#929]) +18 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_psr@psr-dpms.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2939])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1127])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#3414]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#1435])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1435])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][127] ([Intel XE#1729])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [PASS][128] -> [FAIL][129] ([Intel XE#899]) +1 other test fail
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2168])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#455]) +26 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_vrr@flipline.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1091] / [Intel XE#2849])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1126])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#3889])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#3889])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#3889])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +15 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@xe_eudebug_online@preempt-breakpoint.html
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][141] ([Intel XE#1473])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-large.html
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#688]) +5 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2322]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#1392]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1392]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#288]) +36 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#1192])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [PASS][149] -> [SKIP][150] ([Intel XE#1192])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@xe_live_ktest@xe_mocs.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@xe_live_ktest@xe_mocs.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#560])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_media_fill@media-fill.html
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#560])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@pci-membarrier-parallel:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#4045]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_mmap@pci-membarrier-parallel.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#378])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-5/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176]) -> ([PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [SKIP][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200]) ([Intel XE#378])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-435/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-433/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-464/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-433/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-435/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-433/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-464/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-464/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-435/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_module_load@load.html
* igt@xe_module_load@reload:
- shard-dg2-set2: NOTRUN -> [FAIL][201] ([Intel XE#3546])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_module_load@reload.html
- shard-bmg: [PASS][202] -> [FAIL][203] ([Intel XE#3546])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-7/igt@xe_module_load@reload.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt@xe_module_load@reload.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#2541] / [Intel XE#3573]) +8 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#2284])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt@xe_pm@d3cold-mocs.html
- shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#2284])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: [PASS][208] -> [ABORT][209] ([Intel XE#1358])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-prefetch.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-dg2-set2: [PASS][210] -> [ABORT][211] ([Intel XE#1358] / [Intel XE#1794])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][212] ([Intel XE#579])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][213] -> [FAIL][214] ([Intel XE#958])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][215] ([Intel XE#944])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#944]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#944]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_query@query-invalid-extension:
- shard-bmg: [PASS][218] -> [SKIP][219] ([Intel XE#1130]) +17 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-5/igt@xe_query@query-invalid-extension.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@xe_query@query-invalid-extension.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][220] ([Intel XE#3342])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_addfb_basic@addfb25-modifier-no-flag:
- shard-dg2-set2: [SKIP][221] ([i915#6077]) -> [PASS][222] +1 other test pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_addfb_basic@addfb25-modifier-no-flag.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_addfb_basic@addfb25-modifier-no-flag.html
* igt@kms_addfb_basic@bad-pitch-63:
- shard-dg2-set2: [SKIP][223] ([Intel XE#2423] / [i915#2575]) -> [PASS][224] +1 other test pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_addfb_basic@bad-pitch-63.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_addfb_basic@bad-pitch-63.html
* igt@kms_addfb_basic@invalid-set-prop:
- shard-bmg: [SKIP][225] ([Intel XE#2461]) -> [PASS][226] +1 other test pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_addfb_basic@invalid-set-prop.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_addfb_basic@invalid-set-prop.html
* igt@kms_atomic_interruptible@atomic-setmode:
- shard-dg2-set2: [SKIP][227] -> [PASS][228] +3 other tests pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_atomic_interruptible@atomic-setmode.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_atomic_interruptible@atomic-setmode.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-edp-1:
- shard-lnl: [FAIL][229] ([Intel XE#3908]) -> [PASS][230] +1 other test pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-edp-1.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-edp-1.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: [SKIP][231] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][233] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [ABORT][235] ([Intel XE#2625]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_color@legacy-gamma-reset:
- shard-bmg: [SKIP][237] -> [PASS][238] +4 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_color@legacy-gamma-reset.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_color@legacy-gamma-reset.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][239] ([Intel XE#2291]) -> [PASS][240] +3 other tests pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][241] ([Intel XE#877]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][243] ([Intel XE#4072]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][245] ([Intel XE#2882]) -> [PASS][246] +2 other tests pass
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ad-dp2-hdmi-a3.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][247] ([Intel XE#301]) -> [PASS][248] +1 other test pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][249] ([Intel XE#3820]) -> [PASS][250] +1 other test pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][251] ([Intel XE#2316]) -> [PASS][252] +6 other tests pass
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [INCOMPLETE][253] ([Intel XE#2597]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-lnl: [INCOMPLETE][255] ([Intel XE#2049]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
- shard-lnl: [INCOMPLETE][257] -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-7/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-suspend@b-dp2:
- shard-bmg: [INCOMPLETE][259] -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-8/igt@kms_flip@flip-vs-suspend@b-dp2.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@kms_flip@flip-vs-suspend@b-dp2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][261] ([Intel XE#2136]) -> [PASS][262] +1 other test pass
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][263] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant:
- shard-dg2-set2: [SKIP][265] ([Intel XE#829]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
- shard-bmg: [SKIP][267] ([Intel XE#829]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
- shard-bmg: [SKIP][269] ([Intel XE#3007]) -> [PASS][270] +5 other tests pass
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2-set2: [INCOMPLETE][271] -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-180.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][273] ([Intel XE#2883]) -> [PASS][274] +2 other tests pass
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][275] ([Intel XE#1435]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][277] ([Intel XE#899]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@xe_exec_threads@threads-cm-fd-userptr-invalidate:
- shard-bmg: [SKIP][279] ([Intel XE#1130]) -> [PASS][280] +11 other tests pass
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@xe_exec_threads@threads-cm-fd-userptr-invalidate.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@xe_exec_threads@threads-cm-fd-userptr-invalidate.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [SKIP][281] ([Intel XE#2229] / [Intel XE#455]) -> [PASS][282] +1 other test pass
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@xe_live_ktest@xe_bo.html
- shard-bmg: [FAIL][283] ([Intel XE#3099]) -> [PASS][284] +1 other test pass
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@xe_live_ktest@xe_bo.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-dg2-set2: [SKIP][285] ([Intel XE#2229]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [SKIP][287] ([Intel XE#1192]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_pm@s4-basic-exec:
- shard-dg2-set2: [ABORT][289] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][290] +1 other test pass
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt@xe_pm@s4-basic-exec.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@xe_pm@s4-basic-exec.html
* igt@xe_vm@mmap-style-bind-either-side-full:
- shard-dg2-set2: [SKIP][291] ([Intel XE#1130]) -> [PASS][292] +6 other tests pass
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@xe_vm@mmap-style-bind-either-side-full.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@xe_vm@mmap-style-bind-either-side-full.html
#### Warnings ####
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-bmg: [SKIP][293] -> [SKIP][294] ([Intel XE#2385])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: [SKIP][295] ([Intel XE#829]) -> [SKIP][296] ([Intel XE#316])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
- shard-bmg: [SKIP][297] ([Intel XE#829]) -> [SKIP][298] ([Intel XE#2327])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-bmg: [SKIP][299] ([Intel XE#2327]) -> [SKIP][300] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-90.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][301] ([Intel XE#2136]) -> [SKIP][302] ([Intel XE#316])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
- shard-bmg: [SKIP][303] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][304] ([Intel XE#2327])
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-bmg: [SKIP][305] ([Intel XE#1124]) -> [SKIP][306] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-bmg: [SKIP][307] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][308] ([Intel XE#1124])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: [SKIP][309] -> [SKIP][310] ([Intel XE#2314] / [Intel XE#2894])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
- shard-dg2-set2: [SKIP][311] -> [SKIP][312] ([Intel XE#2191])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: [SKIP][313] ([Intel XE#3007]) -> [SKIP][314] ([Intel XE#367])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
- shard-dg2-set2: [SKIP][315] ([Intel XE#2423] / [i915#2575]) -> [SKIP][316] ([Intel XE#367])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
- shard-bmg: [SKIP][317] ([Intel XE#2887]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2231])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-7/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [DMESG-WARN][319] -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2231])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-bmg: [SKIP][321] -> [SKIP][322] ([Intel XE#2887])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: [SKIP][323] ([Intel XE#3007]) -> [SKIP][324] ([Intel XE#2325])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-dg2-set2: [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [SKIP][326] ([Intel XE#306])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_chamelium_color@ctm-blue-to-red.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-dg2-set2: [SKIP][327] ([Intel XE#2423] / [i915#2575]) -> [SKIP][328] ([Intel XE#373])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
- shard-bmg: [SKIP][329] ([Intel XE#3007]) -> [SKIP][330] ([Intel XE#2252])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-bmg: [SKIP][331] -> [SKIP][332] ([Intel XE#2252])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_chamelium_edid@vga-edid-read.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-bmg: [SKIP][333] ([Intel XE#2252]) -> [SKIP][334] ([Intel XE#3007])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt@kms_chamelium_frames@hdmi-frame-dump.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][335] ([Intel XE#2341]) -> [FAIL][336] ([Intel XE#1178])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: [SKIP][337] ([Intel XE#3007]) -> [SKIP][338] ([Intel XE#2341])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_content_protection@mei-interface.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt@kms_content_protection@mei-interface.html
- shard-dg2-set2: [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [SKIP][340] ([Intel XE#455])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_content_protection@mei-interface.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_content_protection@mei-interface.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: [SKIP][341] ([Intel XE#2244]) -> [SKIP][342] ([Intel XE#2136] / [Intel XE#2231])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [SKIP][343] ([Intel XE#2316]) -> [FAIL][344] ([Intel XE#2882])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][345] ([Intel XE#2882] / [Intel XE#3820]) -> [FAIL][346] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-bmg: [FAIL][347] ([Intel XE#2882]) -> [SKIP][348] ([Intel XE#3007])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: [SKIP][349] -> [SKIP][350] ([Intel XE#2293] / [Intel XE#2380])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
- shard-dg2-set2: [SKIP][351] -> [SKIP][352] ([Intel XE#455]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][353] ([Intel XE#2311]) -> [SKIP][354] ([Intel XE#2312]) +5 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][355] ([Intel XE#2312]) -> [SKIP][356] ([Intel XE#2311]) +6 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [FAIL][357] ([Intel XE#2333]) -> [SKIP][358] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [FAIL][359] ([Intel XE#2333]) -> [SKIP][360] ([Intel XE#2312]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][361] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][362] ([Intel XE#2333]) +1 other test fail
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][363] ([Intel XE#2312]) -> [FAIL][364] ([Intel XE#2333]) +1 other test fail
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-bmg: [SKIP][365] ([Intel XE#2311]) -> [SKIP][366] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: [SKIP][367] ([Intel XE#2136]) -> [SKIP][368] ([Intel XE#653])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
- shard-bmg: [SKIP][369] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][370] ([Intel XE#2313])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][371] ([Intel XE#2312]) -> [SKIP][372] ([Intel XE#2313]) +12 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][373] ([Intel XE#2313]) -> [SKIP][374] ([Intel XE#2312]) +4 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][375] -> [SKIP][376] ([Intel XE#2313]) +1 other test skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][377] -> [SKIP][378] ([Intel XE#653]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-bmg: [SKIP][379] ([Intel XE#2313]) -> [SKIP][380] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-bmg: [SKIP][381] ([Intel XE#3007]) -> [SKIP][382] ([Intel XE#2763])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
- shard-dg2-set2: [SKIP][383] ([Intel XE#2423] / [i915#2575]) -> [SKIP][384] ([Intel XE#2763] / [Intel XE#455])
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-bmg: [SKIP][385] ([Intel XE#2763]) -> [SKIP][386] ([Intel XE#3007])
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: [SKIP][387] -> [SKIP][388] ([Intel XE#870])
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_pm_backlight@bad-brightness.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html
- shard-dg2-set2: [SKIP][389] -> [SKIP][390] ([Intel XE#870])
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][391] -> [SKIP][392] ([Intel XE#1489]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-bmg: [SKIP][393] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][394] ([Intel XE#1489])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][395] ([Intel XE#1489]) -> [SKIP][396] ([Intel XE#2136] / [Intel XE#2231])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][397] -> [SKIP][398] ([Intel XE#1489])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2-set2: [SKIP][399] ([Intel XE#2136]) -> [SKIP][400] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_psr@fbc-pr-dpms.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@pr-suspend:
- shard-bmg: [SKIP][401] -> [SKIP][402] ([Intel XE#2234] / [Intel XE#2850])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_psr@pr-suspend.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: [SKIP][403] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][404] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@kms_psr@psr-primary-page-flip.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-bmg: [SKIP][405] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][406] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_psr@psr2-sprite-plane-onoff.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][407] ([Intel XE#362]) -> [SKIP][408] ([Intel XE#1500])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: [SKIP][409] ([Intel XE#3007]) -> [SKIP][410] ([Intel XE#756])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@kms_writeback@writeback-invalid-parameters.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2-set2: [SKIP][411] ([Intel XE#2423] / [i915#2575]) -> [SKIP][412] ([Intel XE#756])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@kms_writeback@writeback-invalid-parameters.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@kms_writeback@writeback-invalid-parameters.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: [SKIP][413] ([Intel XE#2905]) -> [SKIP][414] ([Intel XE#1130]) +2 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-7/igt@xe_eudebug@basic-exec-queues.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][415] ([Intel XE#1473]) -> [TIMEOUT][416] ([Intel XE#1473]) +1 other test timeout
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: [FAIL][417] ([Intel XE#1000]) -> [TIMEOUT][418] ([Intel XE#1473])
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@xe_evict@evict-beng-mixed-threads-large.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [FAIL][419] ([Intel XE#1000]) -> [INCOMPLETE][420] ([Intel XE#1473])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-7/igt@xe_evict@evict-threads-large.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_basic@multigpu-once-rebind:
- shard-bmg: [SKIP][421] ([Intel XE#2322]) -> [SKIP][422] ([Intel XE#1130])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-1/igt@xe_exec_basic@multigpu-once-rebind.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@xe_exec_basic@multigpu-once-rebind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][423] ([Intel XE#1130]) -> [SKIP][424] ([Intel XE#288]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: [FAIL][425] ([Intel XE#3099]) -> [SKIP][426] ([Intel XE#2229])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_mmap@pci-membarrier-bad-pagesize:
- shard-bmg: [SKIP][427] ([Intel XE#4045]) -> [SKIP][428] ([Intel XE#1130])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt@xe_mmap@pci-membarrier-bad-pagesize.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt@xe_mmap@pci-membarrier-bad-pagesize.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-bmg: [SKIP][429] ([Intel XE#1130]) -> [SKIP][430] ([Intel XE#2284])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt@xe_pm@s4-d3cold-basic-exec.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt@xe_pm@s4-d3cold-basic-exec.html
- shard-dg2-set2: [SKIP][431] ([Intel XE#1130]) -> [SKIP][432] ([Intel XE#2284] / [Intel XE#366])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt@xe_pm@s4-d3cold-basic-exec.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt@xe_pm@s4-d3cold-basic-exec.html
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[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#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[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#2461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2461
[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#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
[Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914
[Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
[Intel XE#4048]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4048
[Intel XE#4072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4072
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[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#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#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
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* IGT: IGT_8189 -> IGTPW_12433
* Linux: xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567 -> xe-2480-20058aae3e619821197cd32b736893f1d7917ba3
IGTPW_12433: 8035b8a8167171e8443e4e89f41878445c51f814 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8189: e036190dc1730ecb94cb393f88378e734db4b1d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567: 19b8afc5609e9ae7b410bdb028b4aaf83656b567
xe-2480-20058aae3e619821197cd32b736893f1d7917ba3: 20058aae3e619821197cd32b736893f1d7917ba3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/index.html
[-- Attachment #2: Type: text/html, Size: 126266 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-01-17 8:00 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-13 6:19 [PATCH i-g-t v3 0/3] Miscellaneous OA Refactors Sai Teja Pottumuttu
2025-01-13 6:19 ` [PATCH i-g-t v3 1/3] tests/intel/xe_oa: Remove unused function arguments Sai Teja Pottumuttu
2025-01-13 6:19 ` [PATCH i-g-t v3 2/3] tests/intel/xe_oa: Reduce the number of mmap reports checked Sai Teja Pottumuttu
2025-01-13 19:22 ` Dixit, Ashutosh
2025-01-13 6:19 ` [PATCH i-g-t v3 3/3] tests/intel/xe_oa: Remove hardcoded time heuristics Sai Teja Pottumuttu
2025-01-13 19:37 ` Dixit, Ashutosh
2025-01-13 21:17 ` ✓ i915.CI.BAT: success for Miscellaneous OA Refactors (rev3) Patchwork
2025-01-13 21:18 ` ✓ Xe.CI.BAT: " Patchwork
2025-01-15 7:13 ` ✗ i915.CI.Full: failure " Patchwork
2025-01-17 8:00 ` ✗ 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