* [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe
@ 2023-11-22 13:36 Jouni Högander
2023-11-22 14:34 ` Sharma, Swati2
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Jouni Högander @ 2023-11-22 13:36 UTC (permalink / raw)
To: igt-dev
Skip following tests for Xe:
tile-pitch-mismatch
addfb25-x-tiled-mismatch-legacy
They are not relevant for Xe as tiling information is not encoded into
backing object.
Skip following test for Xe
basic-y-tiled-legacy
As Xe supports y-tiled format on legacy addfb.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
tests/kms_addfb_basic.c | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
index fc16b8814..426277422 100644
--- a/tests/kms_addfb_basic.c
+++ b/tests/kms_addfb_basic.c
@@ -396,7 +396,7 @@ static void pitch_tests(int fd)
/**
* SUBTEST: basic-%s-tiled-legacy
* Description: Check if addfb2 and rmfb call works for basic %arg[1] test
- * Driver requirement: i915, xe
+ * Driver requirement: i915
* Test category: functionality test
* Functionality: kms_gem_interop, tiling
* Mega feature: General Display Features
@@ -410,7 +410,7 @@ static void pitch_tests(int fd)
*
* SUBTEST: tile-pitch-mismatch
* Description: Test that addfb2 call fails correctly for pitches mismatch
- * Driver requirement: i915, xe
+ * Driver requirement: i915
* Test category: functionality test
* Functionality: kms_gem_interop, tiling
* Mega feature: General Display Features
@@ -478,8 +478,8 @@ static void tiling_tests(int fd)
igt_describe("Test that addfb2 call fails correctly for pitches mismatch");
f.pitches[0] = 512*4;
igt_subtest("tile-pitch-mismatch") {
- if (is_i915_device(fd))
- igt_require(gem_available_fences(fd) > 0);
+ igt_require_i915(fd);
+ igt_require(gem_available_fences(fd) > 0);
f.handles[0] = tiled_x_bo;
do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
@@ -488,12 +488,10 @@ static void tiling_tests(int fd)
igt_describe("Test that addfb2 call fails correctly for basic y-tiling test");
f.pitches[0] = 1024*4;
igt_subtest("basic-y-tiled-legacy") {
- if (is_i915_device(fd)) {
- igt_require(!gem_has_lmem(fd));
- igt_require(gem_available_fences(fd) > 0);
- } else {
- igt_require(!xe_has_vram(fd));
- }
+ igt_require_i915(fd);
+ igt_require(!gem_has_lmem(fd));
+ igt_require(gem_available_fences(fd) > 0);
+
f.handles[0] = tiled_y_bo;
do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
@@ -682,7 +680,7 @@ static void size_tests(int fd)
*
* SUBTEST: addfb25-x-tiled-mismatch-legacy
* Description: Test that addfb2 call fails correctly for irrelevant x-tiling
- * Driver requirement: i915, xe
+ * Driver requirement: i915
* Test category: functionality test
* Functionality: kms_gem_interop, tiling
* Mega feature: General Display Features
@@ -752,6 +750,7 @@ static void addfb25_tests(int fd)
igt_describe("Test that addfb2 call fails correctly for irrelevant x-tiling");
igt_subtest("addfb25-x-tiled-mismatch-legacy") {
+ igt_require_i915(fd);
f.modifier[0] = DRM_FORMAT_MOD_LINEAR;
do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
}
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe
2023-11-22 13:36 [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe Jouni Högander
@ 2023-11-22 14:34 ` Sharma, Swati2
2023-11-23 14:00 ` Hogander, Jouni
2023-11-22 19:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (4 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Sharma, Swati2 @ 2023-11-22 14:34 UTC (permalink / raw)
To: Jouni Högander, igt-dev
Hi Jouni,
You can add
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/609
On 22-Nov-23 7:06 PM, Jouni Högander wrote:
> Skip following tests for Xe:
>
> tile-pitch-mismatch
> addfb25-x-tiled-mismatch-legacy
>
> They are not relevant for Xe as tiling information is not encoded into
> backing object.
>
> Skip following test for Xe
>
> basic-y-tiled-legacy
>
> As Xe supports y-tiled format on legacy addfb.
What about yf tiled?
On legacy addfb which all modifiers are supported?
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> tests/kms_addfb_basic.c | 21 ++++++++++-----------
> 1 file changed, 10 insertions(+), 11 deletions(-)
>
> diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
> index fc16b8814..426277422 100644
> --- a/tests/kms_addfb_basic.c
> +++ b/tests/kms_addfb_basic.c
> @@ -396,7 +396,7 @@ static void pitch_tests(int fd)
> /**
> * SUBTEST: basic-%s-tiled-legacy
> * Description: Check if addfb2 and rmfb call works for basic %arg[1] test
> - * Driver requirement: i915, xe
> + * Driver requirement: i915
> * Test category: functionality test
> * Functionality: kms_gem_interop, tiling
> * Mega feature: General Display Features
> @@ -410,7 +410,7 @@ static void pitch_tests(int fd)
> *
> * SUBTEST: tile-pitch-mismatch
> * Description: Test that addfb2 call fails correctly for pitches mismatch
> - * Driver requirement: i915, xe
> + * Driver requirement: i915
> * Test category: functionality test
> * Functionality: kms_gem_interop, tiling
> * Mega feature: General Display Features
> @@ -478,8 +478,8 @@ static void tiling_tests(int fd)
> igt_describe("Test that addfb2 call fails correctly for pitches mismatch");
> f.pitches[0] = 512*4;
> igt_subtest("tile-pitch-mismatch") {
> - if (is_i915_device(fd))
> - igt_require(gem_available_fences(fd) > 0);
> + igt_require_i915(fd);
> + igt_require(gem_available_fences(fd) > 0);
>
> f.handles[0] = tiled_x_bo;
> do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> @@ -488,12 +488,10 @@ static void tiling_tests(int fd)
> igt_describe("Test that addfb2 call fails correctly for basic y-tiling test");
> f.pitches[0] = 1024*4;
> igt_subtest("basic-y-tiled-legacy") {
> - if (is_i915_device(fd)) {
> - igt_require(!gem_has_lmem(fd));
> - igt_require(gem_available_fences(fd) > 0);
> - } else {
> - igt_require(!xe_has_vram(fd));
> - }
> + igt_require_i915(fd);
> + igt_require(!gem_has_lmem(fd));
> + igt_require(gem_available_fences(fd) > 0);
> +
> f.handles[0] = tiled_y_bo;
>
> do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> @@ -682,7 +680,7 @@ static void size_tests(int fd)
> *
> * SUBTEST: addfb25-x-tiled-mismatch-legacy
> * Description: Test that addfb2 call fails correctly for irrelevant x-tiling
> - * Driver requirement: i915, xe
> + * Driver requirement: i915
> * Test category: functionality test
> * Functionality: kms_gem_interop, tiling
> * Mega feature: General Display Features
> @@ -752,6 +750,7 @@ static void addfb25_tests(int fd)
>
> igt_describe("Test that addfb2 call fails correctly for irrelevant x-tiling");
> igt_subtest("addfb25-x-tiled-mismatch-legacy") {
> + igt_require_i915(fd);
> f.modifier[0] = DRM_FORMAT_MOD_LINEAR;
> do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> }
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for kms_addfb_basic: Skip not relevant test for Xe
2023-11-22 13:36 [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe Jouni Högander
2023-11-22 14:34 ` Sharma, Swati2
@ 2023-11-22 19:23 ` Patchwork
2023-11-22 20:12 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-11-22 19:23 UTC (permalink / raw)
To: Jouni Högander; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2233 bytes --]
== Series Details ==
Series: kms_addfb_basic: Skip not relevant test for Xe
URL : https://patchwork.freedesktop.org/series/126763/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13911 -> IGTPW_10244
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/index.html
Participating hosts (38 -> 34)
------------------------------
Missing (4): bat-mtlp-8 bat-adlp-11 bat-jsl-1 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10244 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [PASS][1] -> [FAIL][2] ([IGT#3])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
#### Possible fixes ####
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
- bat-rplp-1: [ABORT][3] ([i915#8668]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7597 -> IGTPW_10244
CI-20190529: 20190529
CI_DRM_13911: 5429d55de723544dfc0630cf39d96392052b27a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10244: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/index.html
IGT_7597: 380983dbd9bb2f7eea5e917e8fed0569bfe8cf9c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/index.html
[-- Attachment #2: Type: text/html, Size: 2860 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for kms_addfb_basic: Skip not relevant test for Xe
2023-11-22 13:36 [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe Jouni Högander
2023-11-22 14:34 ` Sharma, Swati2
2023-11-22 19:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2023-11-22 20:12 ` Patchwork
2023-11-22 20:50 ` [igt-dev] [PATCH i-g-t] " Juha-Pekka Heikkila
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-11-22 20:12 UTC (permalink / raw)
To: Jouni Högander; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3507 bytes --]
== Series Details ==
Series: kms_addfb_basic: Skip not relevant test for Xe
URL : https://patchwork.freedesktop.org/series/126763/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7597_BAT -> XEIGTPW_10244_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 2)
------------------------------
Missing (2): bat-pvc-2 bat-atsm-2
Known issues
------------
Here are the changes found in XEIGTPW_10244_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([i915#2346])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7597/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10244/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
#### Warnings ####
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-oem2: [SKIP][3] ([Intel XE#624]) -> [SKIP][4] ([Intel XE#388])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7597/bat-dg2-oem2/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10244/bat-dg2-oem2/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-adlp-7: [FAIL][5] ([Intel XE#609]) -> [SKIP][6] ([Intel XE#388]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7597/bat-adlp-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10244/bat-adlp-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-oem2: [FAIL][7] ([Intel XE#609]) -> [SKIP][8] ([Intel XE#388]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7597/bat-dg2-oem2/igt@kms_addfb_basic@tile-pitch-mismatch.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10244/bat-dg2-oem2/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [DMESG-FAIL][9] ([Intel XE#282] / [i915#2017]) -> [FAIL][10] ([Intel XE#616] / [Intel XE#750])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7597/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10244/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/388
[Intel XE#609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/609
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/624
[Intel XE#750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/750
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
Build changes
-------------
* IGT: IGT_7597 -> IGTPW_10244
IGTPW_10244: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/index.html
IGT_7597: 380983dbd9bb2f7eea5e917e8fed0569bfe8cf9c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-516-59f2e73469cace9c78aab7506284ae446d57b8bc: 59f2e73469cace9c78aab7506284ae446d57b8bc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10244/index.html
[-- Attachment #2: Type: text/html, Size: 4364 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe
2023-11-22 13:36 [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe Jouni Högander
` (2 preceding siblings ...)
2023-11-22 20:12 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-11-22 20:50 ` Juha-Pekka Heikkila
2023-11-23 10:03 ` Kamil Konieczny
2023-11-23 23:02 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Juha-Pekka Heikkila @ 2023-11-22 20:50 UTC (permalink / raw)
To: Jouni Högander, igt-dev
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
On 22.11.2023 15.36, Jouni Högander wrote:
> Skip following tests for Xe:
>
> tile-pitch-mismatch
> addfb25-x-tiled-mismatch-legacy
>
> They are not relevant for Xe as tiling information is not encoded into
> backing object.
>
> Skip following test for Xe
>
> basic-y-tiled-legacy
>
> As Xe supports y-tiled format on legacy addfb.
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> tests/kms_addfb_basic.c | 21 ++++++++++-----------
> 1 file changed, 10 insertions(+), 11 deletions(-)
>
> diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
> index fc16b8814..426277422 100644
> --- a/tests/kms_addfb_basic.c
> +++ b/tests/kms_addfb_basic.c
> @@ -396,7 +396,7 @@ static void pitch_tests(int fd)
> /**
> * SUBTEST: basic-%s-tiled-legacy
> * Description: Check if addfb2 and rmfb call works for basic %arg[1] test
> - * Driver requirement: i915, xe
> + * Driver requirement: i915
> * Test category: functionality test
> * Functionality: kms_gem_interop, tiling
> * Mega feature: General Display Features
> @@ -410,7 +410,7 @@ static void pitch_tests(int fd)
> *
> * SUBTEST: tile-pitch-mismatch
> * Description: Test that addfb2 call fails correctly for pitches mismatch
> - * Driver requirement: i915, xe
> + * Driver requirement: i915
> * Test category: functionality test
> * Functionality: kms_gem_interop, tiling
> * Mega feature: General Display Features
> @@ -478,8 +478,8 @@ static void tiling_tests(int fd)
> igt_describe("Test that addfb2 call fails correctly for pitches mismatch");
> f.pitches[0] = 512*4;
> igt_subtest("tile-pitch-mismatch") {
> - if (is_i915_device(fd))
> - igt_require(gem_available_fences(fd) > 0);
> + igt_require_i915(fd);
> + igt_require(gem_available_fences(fd) > 0);
>
> f.handles[0] = tiled_x_bo;
> do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> @@ -488,12 +488,10 @@ static void tiling_tests(int fd)
> igt_describe("Test that addfb2 call fails correctly for basic y-tiling test");
> f.pitches[0] = 1024*4;
> igt_subtest("basic-y-tiled-legacy") {
> - if (is_i915_device(fd)) {
> - igt_require(!gem_has_lmem(fd));
> - igt_require(gem_available_fences(fd) > 0);
> - } else {
> - igt_require(!xe_has_vram(fd));
> - }
> + igt_require_i915(fd);
> + igt_require(!gem_has_lmem(fd));
> + igt_require(gem_available_fences(fd) > 0);
> +
> f.handles[0] = tiled_y_bo;
>
> do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> @@ -682,7 +680,7 @@ static void size_tests(int fd)
> *
> * SUBTEST: addfb25-x-tiled-mismatch-legacy
> * Description: Test that addfb2 call fails correctly for irrelevant x-tiling
> - * Driver requirement: i915, xe
> + * Driver requirement: i915
> * Test category: functionality test
> * Functionality: kms_gem_interop, tiling
> * Mega feature: General Display Features
> @@ -752,6 +750,7 @@ static void addfb25_tests(int fd)
>
> igt_describe("Test that addfb2 call fails correctly for irrelevant x-tiling");
> igt_subtest("addfb25-x-tiled-mismatch-legacy") {
> + igt_require_i915(fd);
> f.modifier[0] = DRM_FORMAT_MOD_LINEAR;
> do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> }
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe
2023-11-22 13:36 [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe Jouni Högander
` (3 preceding siblings ...)
2023-11-22 20:50 ` [igt-dev] [PATCH i-g-t] " Juha-Pekka Heikkila
@ 2023-11-23 10:03 ` Kamil Konieczny
2023-11-23 10:27 ` Hogander, Jouni
2023-11-23 23:02 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
5 siblings, 1 reply; 10+ messages in thread
From: Kamil Konieczny @ 2023-11-23 10:03 UTC (permalink / raw)
To: igt-dev
Hi Jouni,
On 2023-11-22 at 15:36:12 +0200, Jouni Högander wrote:
add "tests/" in your subject line and use plural, like:
[PATCH i-g-t] tests/kms_addfb_basic: Skip not relevant subtests for Xe
Regards,
Kamil
> Skip following tests for Xe:
>
> tile-pitch-mismatch
> addfb25-x-tiled-mismatch-legacy
>
> They are not relevant for Xe as tiling information is not encoded into
> backing object.
>
> Skip following test for Xe
>
> basic-y-tiled-legacy
>
> As Xe supports y-tiled format on legacy addfb.
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> tests/kms_addfb_basic.c | 21 ++++++++++-----------
> 1 file changed, 10 insertions(+), 11 deletions(-)
>
> diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
> index fc16b8814..426277422 100644
> --- a/tests/kms_addfb_basic.c
> +++ b/tests/kms_addfb_basic.c
> @@ -396,7 +396,7 @@ static void pitch_tests(int fd)
> /**
> * SUBTEST: basic-%s-tiled-legacy
> * Description: Check if addfb2 and rmfb call works for basic %arg[1] test
> - * Driver requirement: i915, xe
> + * Driver requirement: i915
> * Test category: functionality test
> * Functionality: kms_gem_interop, tiling
> * Mega feature: General Display Features
> @@ -410,7 +410,7 @@ static void pitch_tests(int fd)
> *
> * SUBTEST: tile-pitch-mismatch
> * Description: Test that addfb2 call fails correctly for pitches mismatch
> - * Driver requirement: i915, xe
> + * Driver requirement: i915
> * Test category: functionality test
> * Functionality: kms_gem_interop, tiling
> * Mega feature: General Display Features
> @@ -478,8 +478,8 @@ static void tiling_tests(int fd)
> igt_describe("Test that addfb2 call fails correctly for pitches mismatch");
> f.pitches[0] = 512*4;
> igt_subtest("tile-pitch-mismatch") {
> - if (is_i915_device(fd))
> - igt_require(gem_available_fences(fd) > 0);
> + igt_require_i915(fd);
> + igt_require(gem_available_fences(fd) > 0);
>
> f.handles[0] = tiled_x_bo;
> do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> @@ -488,12 +488,10 @@ static void tiling_tests(int fd)
> igt_describe("Test that addfb2 call fails correctly for basic y-tiling test");
> f.pitches[0] = 1024*4;
> igt_subtest("basic-y-tiled-legacy") {
> - if (is_i915_device(fd)) {
> - igt_require(!gem_has_lmem(fd));
> - igt_require(gem_available_fences(fd) > 0);
> - } else {
> - igt_require(!xe_has_vram(fd));
> - }
> + igt_require_i915(fd);
> + igt_require(!gem_has_lmem(fd));
> + igt_require(gem_available_fences(fd) > 0);
> +
> f.handles[0] = tiled_y_bo;
>
> do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> @@ -682,7 +680,7 @@ static void size_tests(int fd)
> *
> * SUBTEST: addfb25-x-tiled-mismatch-legacy
> * Description: Test that addfb2 call fails correctly for irrelevant x-tiling
> - * Driver requirement: i915, xe
> + * Driver requirement: i915
> * Test category: functionality test
> * Functionality: kms_gem_interop, tiling
> * Mega feature: General Display Features
> @@ -752,6 +750,7 @@ static void addfb25_tests(int fd)
>
> igt_describe("Test that addfb2 call fails correctly for irrelevant x-tiling");
> igt_subtest("addfb25-x-tiled-mismatch-legacy") {
> + igt_require_i915(fd);
> f.modifier[0] = DRM_FORMAT_MOD_LINEAR;
> do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> }
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe
2023-11-23 10:03 ` Kamil Konieczny
@ 2023-11-23 10:27 ` Hogander, Jouni
0 siblings, 0 replies; 10+ messages in thread
From: Hogander, Jouni @ 2023-11-23 10:27 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, kamil.konieczny@linux.intel.com
On Thu, 2023-11-23 at 11:03 +0100, Kamil Konieczny wrote:
> Hi Jouni,
> On 2023-11-22 at 15:36:12 +0200, Jouni Högander wrote:
>
> add "tests/" in your subject line and use plural, like:
>
> [PATCH i-g-t] tests/kms_addfb_basic: Skip not relevant subtests for
> Xe
Thank you Kamil for checking my patch. I have addressed your comments
in version 2 of my patch. Please check.
BR,
Jouni Högander
>
> Regards,
> Kamil
>
> > Skip following tests for Xe:
> >
> > tile-pitch-mismatch
> > addfb25-x-tiled-mismatch-legacy
> >
> > They are not relevant for Xe as tiling information is not encoded
> > into
> > backing object.
> >
> > Skip following test for Xe
> >
> > basic-y-tiled-legacy
> >
> > As Xe supports y-tiled format on legacy addfb.
> >
> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > ---
> > tests/kms_addfb_basic.c | 21 ++++++++++-----------
> > 1 file changed, 10 insertions(+), 11 deletions(-)
> >
> > diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
> > index fc16b8814..426277422 100644
> > --- a/tests/kms_addfb_basic.c
> > +++ b/tests/kms_addfb_basic.c
> > @@ -396,7 +396,7 @@ static void pitch_tests(int fd)
> > /**
> > * SUBTEST: basic-%s-tiled-legacy
> > * Description: Check if addfb2 and rmfb call works for basic
> > %arg[1] test
> > - * Driver requirement: i915, xe
> > + * Driver requirement: i915
> > * Test category: functionality test
> > * Functionality: kms_gem_interop, tiling
> > * Mega feature: General Display Features
> > @@ -410,7 +410,7 @@ static void pitch_tests(int fd)
> > *
> > * SUBTEST: tile-pitch-mismatch
> > * Description: Test that addfb2 call fails correctly for pitches
> > mismatch
> > - * Driver requirement: i915, xe
> > + * Driver requirement: i915
> > * Test category: functionality test
> > * Functionality: kms_gem_interop, tiling
> > * Mega feature: General Display Features
> > @@ -478,8 +478,8 @@ static void tiling_tests(int fd)
> > igt_describe("Test that addfb2 call fails correctly
> > for pitches mismatch");
> > f.pitches[0] = 512*4;
> > igt_subtest("tile-pitch-mismatch") {
> > - if (is_i915_device(fd))
> > -
> > igt_require(gem_available_fences(fd)
> > > 0);
> > + igt_require_i915(fd);
> > + igt_require(gem_available_fences(fd) > 0);
> >
> > f.handles[0] = tiled_x_bo;
> > do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f,
> > EINVAL);
> > @@ -488,12 +488,10 @@ static void tiling_tests(int fd)
> > igt_describe("Test that addfb2 call fails correctly
> > for basic y-tiling test");
> > f.pitches[0] = 1024*4;
> > igt_subtest("basic-y-tiled-legacy") {
> > - if (is_i915_device(fd)) {
> > - igt_require(!gem_has_lmem(fd));
> > -
> > igt_require(gem_available_fences(fd)
> > > 0);
> > - } else {
> > - igt_require(!xe_has_vram(fd));
> > - }
> > + igt_require_i915(fd);
> > + igt_require(!gem_has_lmem(fd));
> > + igt_require(gem_available_fences(fd) > 0);
> > +
> > f.handles[0] = tiled_y_bo;
> >
> > do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f,
> > EINVAL);
> > @@ -682,7 +680,7 @@ static void size_tests(int fd)
> > *
> > * SUBTEST: addfb25-x-tiled-mismatch-legacy
> > * Description: Test that addfb2 call fails correctly for
> > irrelevant x-tiling
> > - * Driver requirement: i915, xe
> > + * Driver requirement: i915
> > * Test category: functionality test
> > * Functionality: kms_gem_interop, tiling
> > * Mega feature: General Display Features
> > @@ -752,6 +750,7 @@ static void addfb25_tests(int fd)
> >
> > igt_describe("Test that addfb2 call fails correctly
> > for irrelevant x-tiling");
> > igt_subtest("addfb25-x-tiled-mismatch-legacy") {
> > + igt_require_i915(fd);
> > f.modifier[0] = DRM_FORMAT_MOD_LINEAR;
> > do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f,
> > EINVAL);
> > }
> > --
> > 2.34.1
> >
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe
2023-11-22 14:34 ` Sharma, Swati2
@ 2023-11-23 14:00 ` Hogander, Jouni
0 siblings, 0 replies; 10+ messages in thread
From: Hogander, Jouni @ 2023-11-23 14:00 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Sharma, Swati2
On Wed, 2023-11-22 at 20:04 +0530, Sharma, Swati2 wrote:
> Hi Jouni,
>
> You can add
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/609
>
> On 22-Nov-23 7:06 PM, Jouni Högander wrote:
> > Skip following tests for Xe:
> >
> > tile-pitch-mismatch
> > addfb25-x-tiled-mismatch-legacy
> >
> > They are not relevant for Xe as tiling information is not encoded
> > into
> > backing object.
> >
> > Skip following test for Xe
> >
> > basic-y-tiled-legacy
> >
> > As Xe supports y-tiled format on legacy addfb.
>
> What about yf tiled?
yf tiled is not a problem what comes to these tests. I.e. in basic-y-
tiled-legacy our test is expecting the ioctl to fail while Xe is
accepting it just fine. Same goes with yf, but yf is not a problem in
our tests as there is no such testcase wich would specifically check
that ioctl fails if yf-tiled is used.
BR,
Jouni Högander
> On legacy addfb which all modifiers are supported?
>
> >
> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > ---
> > tests/kms_addfb_basic.c | 21 ++++++++++-----------
> > 1 file changed, 10 insertions(+), 11 deletions(-)
> >
> > diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
> > index fc16b8814..426277422 100644
> > --- a/tests/kms_addfb_basic.c
> > +++ b/tests/kms_addfb_basic.c
> > @@ -396,7 +396,7 @@ static void pitch_tests(int fd)
> > /**
> > * SUBTEST: basic-%s-tiled-legacy
> > * Description: Check if addfb2 and rmfb call works for basic
> > %arg[1] test
> > - * Driver requirement: i915, xe
> > + * Driver requirement: i915
> > * Test category: functionality test
> > * Functionality: kms_gem_interop, tiling
> > * Mega feature: General Display Features
> > @@ -410,7 +410,7 @@ static void pitch_tests(int fd)
> > *
> > * SUBTEST: tile-pitch-mismatch
> > * Description: Test that addfb2 call fails correctly for pitches
> > mismatch
> > - * Driver requirement: i915, xe
> > + * Driver requirement: i915
> > * Test category: functionality test
> > * Functionality: kms_gem_interop, tiling
> > * Mega feature: General Display Features
> > @@ -478,8 +478,8 @@ static void tiling_tests(int fd)
> > igt_describe("Test that addfb2 call fails correctly
> > for pitches mismatch");
> > f.pitches[0] = 512*4;
> > igt_subtest("tile-pitch-mismatch") {
> > - if (is_i915_device(fd))
> > -
> > igt_require(gem_available_fences(fd)
> > > 0);
> > + igt_require_i915(fd);
> > + igt_require(gem_available_fences(fd) > 0);
> >
> > f.handles[0] = tiled_x_bo;
> > do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f,
> > EINVAL);
> > @@ -488,12 +488,10 @@ static void tiling_tests(int fd)
> > igt_describe("Test that addfb2 call fails correctly
> > for basic y-tiling test");
> > f.pitches[0] = 1024*4;
> > igt_subtest("basic-y-tiled-legacy") {
> > - if (is_i915_device(fd)) {
> > - igt_require(!gem_has_lmem(fd));
> > -
> > igt_require(gem_available_fences(fd)
> > > 0);
> > - } else {
> > - igt_require(!xe_has_vram(fd));
> > - }
> > + igt_require_i915(fd);
> > + igt_require(!gem_has_lmem(fd));
> > + igt_require(gem_available_fences(fd) > 0);
> > +
> > f.handles[0] = tiled_y_bo;
> >
> > do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f,
> > EINVAL);
> > @@ -682,7 +680,7 @@ static void size_tests(int fd)
> > *
> > * SUBTEST: addfb25-x-tiled-mismatch-legacy
> > * Description: Test that addfb2 call fails correctly for
> > irrelevant x-tiling
> > - * Driver requirement: i915, xe
> > + * Driver requirement: i915
> > * Test category: functionality test
> > * Functionality: kms_gem_interop, tiling
> > * Mega feature: General Display Features
> > @@ -752,6 +750,7 @@ static void addfb25_tests(int fd)
> >
> > igt_describe("Test that addfb2 call fails correctly
> > for irrelevant x-tiling");
> > igt_subtest("addfb25-x-tiled-mismatch-legacy") {
> > + igt_require_i915(fd);
> > f.modifier[0] = DRM_FORMAT_MOD_LINEAR;
> > do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f,
> > EINVAL);
> > }
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for kms_addfb_basic: Skip not relevant test for Xe
2023-11-22 13:36 [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe Jouni Högander
` (4 preceding siblings ...)
2023-11-23 10:03 ` Kamil Konieczny
@ 2023-11-23 23:02 ` Patchwork
2023-11-24 13:25 ` Hogander, Jouni
5 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2023-11-23 23:02 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 56733 bytes --]
== Series Details ==
Series: kms_addfb_basic: Skip not relevant test for Xe
URL : https://patchwork.freedesktop.org/series/126763/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13911_full -> IGTPW_10244_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10244_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10244_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10244/index.html
Participating hosts (10 -> 11)
------------------------------
Additional (1): shard-tglu0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10244_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1:
- shard-mtlp: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1.html
Known issues
------------
Here are the changes found in IGTPW_10244_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +30 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3281]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-1/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#3936])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-17/igt@gem_busy@semaphore.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8555]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@legacy-engines-hang:
- shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-snb5/igt@gem_ctx_persistence@legacy-engines-hang.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#5882]) +5 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#280])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][15] ([i915#7975] / [i915#8213])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg2: NOTRUN -> [FAIL][16] ([i915#5784])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][17] -> [FAIL][18] ([i915#5784])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg1-12/igt@gem_eio@unwedge-stress.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#4812])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-mtlp: NOTRUN -> [FAIL][20] ([i915#9606])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@gem_exec_capture@many-4k-incremental.html
- shard-dg2: NOTRUN -> [FAIL][21] ([i915#9606])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#3539])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-17/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [PASS][23] -> [FAIL][24] ([i915#2842])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4812])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#7697])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-17/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][28] ([fdo#112283])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +5 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4860]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4860])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4613]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@random:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#4613])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@gem_lmem_swapping@random.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4077]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4077]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4083]) +6 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_mmap_wc@copy.html
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4083]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3282]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3282]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3282])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4270]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-16/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4270]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4270])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#8428]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4079])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4079]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-12/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-tglu: NOTRUN -> [SKIP][49] ([fdo#109312])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4885])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][51] ([i915#5889])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_spin_batch@spin-all-new.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3297]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3297] / [i915#4880])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3297]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-12/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#3297])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@reset:
- shard-mtlp: [PASS][56] -> [ABORT][57] ([i915#9414]) +2 other tests abort
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-5/igt@gem_workarounds@reset.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@gem_workarounds@reset.html
* igt@gen3_render_linear_blits:
- shard-dg2: NOTRUN -> [SKIP][58] ([fdo#109289]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@gen3_render_linear_blits.html
* igt@gen7_exec_parse@basic-offset:
- shard-dg1: NOTRUN -> [SKIP][59] ([fdo#109289]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@gen7_exec_parse@basic-offset.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#2527])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#2527] / [i915#2856])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-3/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#2856]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@valid-registers:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#2856])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@gen9_exec_parse@valid-registers.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#8925])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4387])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#6188])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][67] ([fdo#109302])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@i915_query@query-topology-unsupported.html
- shard-dg1: NOTRUN -> [SKIP][68] ([fdo#109302])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@live@gem_contexts:
- shard-mtlp: [PASS][69] -> [DMESG-FAIL][70] ([i915#9579])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-8/igt@i915_selftest@live@gem_contexts.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-1/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@mock@memory_region:
- shard-mtlp: NOTRUN -> [DMESG-WARN][71] ([i915#9311])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@fence-restore-untiled:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +6 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-18/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4215] / [i915#5190])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4212])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4212] / [i915#5608])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [FAIL][76] ([i915#8247]) +3 other tests fail
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][77] ([i915#8247]) +3 other tests fail
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][78] ([fdo#111615] / [i915#5286])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#5286])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#5286])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4538] / [i915#5286]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3638]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][83] ([fdo#111614]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][84] ([fdo#111614]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190]) +18 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4538] / [i915#5190]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][87] ([fdo#111615]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#4538])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][89] ([fdo#111615]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#2705])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@kms_big_joiner@basic.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4087]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-max:
- shard-mtlp: NOTRUN -> [SKIP][92] ([fdo#111827])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][93] ([fdo#111827])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@gamma:
- shard-dg1: NOTRUN -> [SKIP][94] ([fdo#111827])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#7828]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#7828]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#7828]) +11 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#7828]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#3299])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3299])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#3555]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3359]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#3359]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#3555]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][105] ([fdo#109274] / [fdo#111767] / [i915#5354])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#3546])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][107] ([fdo#109274] / [i915#5354]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][108] -> [FAIL][109] ([i915#2346])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#3840])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#3555] / [i915#3840] / [i915#4098])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#3555] / [i915#3840])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#3637]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][114] ([fdo#109274] / [fdo#111767])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg1: NOTRUN -> [SKIP][115] ([fdo#111767] / [fdo#111825])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][116] ([fdo#109274]) +8 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-snb: NOTRUN -> [SKIP][117] ([fdo#109271]) +31 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-snb5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][118] ([fdo#111825]) +20 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#2587] / [i915#2672])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#2672])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#2587] / [i915#2672]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-glk: NOTRUN -> [SKIP][122] ([fdo#109271]) +78 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-glk5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#2672] / [i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#2672]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#8708]) +21 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
- shard-dg2: [PASS][126] -> [FAIL][127] ([i915#6880]) +1 other test fail
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#3458]) +16 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3458]) +10 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#5354]) +24 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#1825]) +8 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][132] ([fdo#109280]) +8 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#8708]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][134] ([fdo#110189]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#8708]) +5 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3555] / [i915#8228])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#3555] / [i915#8228]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3555] / [i915#8228])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#1839])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-mtlp: NOTRUN -> [SKIP][140] ([fdo#109289])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][141] ([i915#7862]) +1 other test fail
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#8821])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][143] ([i915#8292])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#5176] / [i915#9423]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#5235]) +23 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#5235]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#5235])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#5235]) +11 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][149] ([fdo#111068] / [i915#9683])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#9683]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#9681]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@psr2_sprite_render:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#9673]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_psr@psr2_sprite_render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#9685])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][154] ([fdo#111615] / [i915#5289])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][155] ([fdo#111615] / [i915#5289])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#3555])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][157] ([i915#5465]) +1 other test fail
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#4098])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [PASS][159] -> [FAIL][160] ([i915#9196])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#2437])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-16/igt@kms_writeback@writeback-fb-id.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-dg1: NOTRUN -> [FAIL][162] ([i915#4349])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@render-node-busy@ccs0:
- shard-mtlp: [PASS][163] -> [FAIL][164] ([i915#4349])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@perf_pmu@render-node-busy@ccs0.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@perf_pmu@render-node-busy@ccs0.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#3291] / [i915#3708])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#3708] / [i915#4077])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#3708])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#4818])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_perfmon@get-values-valid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#2575]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html
* igt@v3d/v3d_submit_cl@multiple-job-submission:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#2575]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@v3d/v3d_submit_cl@multiple-job-submission.html
* igt@v3d/v3d_submit_cl@single-out-sync:
- shard-tglu: NOTRUN -> [SKIP][171] ([fdo#109315] / [i915#2575]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-10/igt@v3d/v3d_submit_cl@single-out-sync.html
* igt@v3d/v3d_submit_cl@valid-multisync-submission:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#2575]) +13 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@v3d/v3d_submit_cl@valid-multisync-submission.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#7711]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_tiling@set-bad-flags:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#2575]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-2/igt@vc4/vc4_tiling@set-bad-flags.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#7711]) +7 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#7711]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][177] ([i915#6268]) -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][179] ([i915#5784]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg1-17/igt@gem_eio@reset-stress.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: [ABORT][181] ([i915#7975] / [i915#8213]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][183] ([i915#3743]) -> [PASS][184] +1 other test pass
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][185] ([i915#2346]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@single-bo@all-pipes:
- shard-mtlp: [DMESG-WARN][187] ([i915#2017]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@kms_cursor_legacy@single-bo@all-pipes.html
* {igt@kms_pm_rpm@modeset-lpsp-stress}:
- shard-dg2: [SKIP][189] ([i915#9519]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-mtlp: [FAIL][191] ([i915#9196]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@perf@enable-disable@0-rcs0:
- shard-dg2: [FAIL][193] ([i915#8724]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@perf@enable-disable@0-rcs0.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [FAIL][195] ([i915#4349]) -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html
#### Warnings ####
* igt@kms_async_flips@crc@pipe-b-edp-1:
- shard-mtlp: [DMESG-FAIL][197] ([i915#8561]) -> [FAIL][198] ([i915#8247]) +2 other tests fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-6/igt@kms_async_flips@crc@pipe-b-edp-1.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_async_flips@crc@pipe-b-edp-1.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][199] ([i915#7118]) -> [SKIP][200] ([i915#7118] / [i915#7162])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-2/igt@kms_content_protection@type1.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_content_protection@type1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7597 -> IGTPW_10244
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13911: 5429d55de723544dfc0630cf39d96392052b27a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10244: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/index.html
IGT_7597: 380983dbd9bb2f7eea5e917e8fed0569bfe8cf9c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/index.html
[-- Attachment #2: Type: text/html, Size: 68406 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for kms_addfb_basic: Skip not relevant test for Xe
2023-11-23 23:02 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
@ 2023-11-24 13:25 ` Hogander, Jouni
0 siblings, 0 replies; 10+ messages in thread
From: Hogander, Jouni @ 2023-11-24 13:25 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 56850 bytes --]
Hello,
Possible regression reported by CI have nothing to do with my patch.
BR,
Jouni Högander
On Thu, 2023-11-23 at 23:02 +0000, Patchwork wrote:
Patch Details
Series: kms_addfb_basic: Skip not relevant test for Xe
URL: https://patchwork.freedesktop.org/series/126763/
State: failure
Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/index.html
CI Bug Log - changes from CI_DRM_13911_full -> IGTPW_10244_full
Summary
FAILURE
Serious unknown changes coming with IGTPW_10244_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10244_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10244/index.html
Participating hosts (10 -> 11)
Additional (1): shard-tglu0
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_10244_full:
IGT changes
Possible regressions
* igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1.html>
Known issues
Here are the changes found in IGTPW_10244_full that come from known issues:
IGT changes
Issues hit
* igt@api_intel_bb@blit-reloc-purge-cache:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/intel/issues/8411>) +1 other test skip
* igt@api_intel_bb@object-reloc-keep-cache:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@api_intel_bb@object-reloc-keep-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/intel/issues/8411>)
* igt@drm_fdinfo@busy@ccs0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@drm_fdinfo@busy@ccs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>) +30 other tests skip
* igt@drm_fdinfo@virtual-busy-hang:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@drm_fdinfo@virtual-busy-hang.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>) +3 other tests skip
* igt@gem_bad_reloc@negative-reloc-lut:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-1/igt@gem_bad_reloc@negative-reloc-lut.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +1 other test skip
* igt@gem_busy@semaphore:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-17/igt@gem_busy@semaphore.html> (i915#3936<https://gitlab.freedesktop.org/drm/intel/issues/3936>)
* igt@gem_close_race@multigpu-basic-threads:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html> (i915#7697<https://gitlab.freedesktop.org/drm/intel/issues/7697>)
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@gem_close_race@multigpu-basic-threads.html> (i915#7697<https://gitlab.freedesktop.org/drm/intel/issues/7697>)
* igt@gem_ctx_persistence@heartbeat-hostile:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html> (i915#8555<https://gitlab.freedesktop.org/drm/intel/issues/8555>) +2 other tests skip
* igt@gem_ctx_persistence@legacy-engines-hang:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-snb5/igt@gem_ctx_persistence@legacy-engines-hang.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>)
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html> (i915#5882<https://gitlab.freedesktop.org/drm/intel/issues/5882>) +5 other tests skip
* igt@gem_ctx_sseu@mmap-args:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>)
* igt@gem_eio@hibernate:
* shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@gem_eio@hibernate.html> (i915#7975<https://gitlab.freedesktop.org/drm/intel/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/intel/issues/8213>)
* igt@gem_eio@reset-stress:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@gem_eio@reset-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>)
* igt@gem_eio@unwedge-stress:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg1-12/igt@gem_eio@unwedge-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-17/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>)
* igt@gem_exec_balancer@sliced:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_exec_balancer@sliced.html> (i915#4812<https://gitlab.freedesktop.org/drm/intel/issues/4812>)
* igt@gem_exec_capture@many-4k-incremental:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@gem_exec_capture@many-4k-incremental.html> (i915#9606<https://gitlab.freedesktop.org/drm/intel/issues/9606>)
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@gem_exec_capture@many-4k-incremental.html> (i915#9606<https://gitlab.freedesktop.org/drm/intel/issues/9606>)
* igt@gem_exec_fair@basic-pace-solo:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-17/igt@gem_exec_fair@basic-pace-solo.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539>)
* igt@gem_exec_fair@basic-pace-solo@rcs0:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
* igt@gem_exec_fence@submit:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@gem_exec_fence@submit.html> (i915#4812<https://gitlab.freedesktop.org/drm/intel/issues/4812>)
* igt@gem_exec_flush@basic-uc-ro-default:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/intel/issues/4852>) +3 other tests skip
* igt@gem_exec_gttfill@multigpu-basic:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-17/igt@gem_exec_gttfill@multigpu-basic.html> (i915#7697<https://gitlab.freedesktop.org/drm/intel/issues/7697>)
* igt@gem_exec_params@secure-non-root:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_exec_params@secure-non-root.html> (fdo#112283<https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
* igt@gem_exec_reloc@basic-softpin:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@gem_exec_reloc@basic-softpin.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +5 other tests skip
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +5 other tests skip
* igt@gem_exec_schedule@preempt-queue-chain:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-chain.html> (i915#4537<https://gitlab.freedesktop.org/drm/intel/issues/4537> / i915#4812<https://gitlab.freedesktop.org/drm/intel/issues/4812>)
* igt@gem_fence_thrash@bo-copy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html> (i915#4860<https://gitlab.freedesktop.org/drm/intel/issues/4860>) +1 other test skip
* igt@gem_fence_thrash@bo-write-verify-none:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-none.html> (i915#4860<https://gitlab.freedesktop.org/drm/intel/issues/4860>)
* igt@gem_lmem_swapping@heavy-verify-multi:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 other test skip
* igt@gem_lmem_swapping@random:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@gem_lmem_swapping@random.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
* igt@gem_mmap_gtt@basic-short:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@gem_mmap_gtt@basic-short.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +5 other tests skip
* igt@gem_mmap_gtt@medium-copy-xy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_mmap_gtt@medium-copy-xy.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +7 other tests skip
* igt@gem_mmap_wc@copy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_mmap_wc@copy.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>) +6 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@gem_mmap_wc@copy.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>) +4 other tests skip
* igt@gem_partial_pwrite_pread@reads-display:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-display.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) +2 other tests skip
* igt@gem_partial_pwrite_pread@reads-uncached:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) +6 other tests skip
* igt@gem_pwrite@basic-self:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@gem_pwrite@basic-self.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>)
* igt@gem_pxp@create-valid-protected-context:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-16/igt@gem_pxp@create-valid-protected-context.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 other test skip
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +2 other tests skip
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>)
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html> (i915#8428<https://gitlab.freedesktop.org/drm/intel/issues/8428>) +1 other test skip
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> (i915#4079<https://gitlab.freedesktop.org/drm/intel/issues/4079>)
* igt@gem_set_tiling_vs_gtt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-12/igt@gem_set_tiling_vs_gtt.html> (i915#4079<https://gitlab.freedesktop.org/drm/intel/issues/4079>) +1 other test skip
* igt@gem_softpin@evict-snoop:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@gem_softpin@evict-snoop.html> (fdo#109312<https://bugs.freedesktop.org/show_bug.cgi?id=109312>)
* igt@gem_softpin@evict-snoop-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html> (i915#4885<https://gitlab.freedesktop.org/drm/intel/issues/4885>)
* igt@gem_spin_batch@spin-all-new:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_spin_batch@spin-all-new.html> (i915#5889<https://gitlab.freedesktop.org/drm/intel/issues/5889>)
* igt@gem_userptr_blits@dmabuf-unsync:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) +1 other test skip
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297> / i915#4880<https://gitlab.freedesktop.org/drm/intel/issues/4880>)
* igt@gem_userptr_blits@unsync-overlap:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-12/igt@gem_userptr_blits@unsync-overlap.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) +1 other test skip
* igt@gem_userptr_blits@unsync-unmap-cycles:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>)
* igt@gem_workarounds@reset:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-5/igt@gem_workarounds@reset.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@gem_workarounds@reset.html> (i915#9414<https://gitlab.freedesktop.org/drm/intel/issues/9414>) +2 other tests abort
* igt@gen3_render_linear_blits:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@gen3_render_linear_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +2 other tests skip
* igt@gen7_exec_parse@basic-offset:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@gen7_exec_parse@basic-offset.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 other test skip
* igt@gen9_exec_parse@batch-without-end:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@gen9_exec_parse@batch-without-end.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>)
* igt@gen9_exec_parse@bb-chained:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-3/igt@gen9_exec_parse@bb-chained.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>)
* igt@gen9_exec_parse@bb-start-param:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +2 other tests skip
* igt@gen9_exec_parse@valid-registers:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@gen9_exec_parse@valid-registers.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>)
* igt@i915_pm_rps@thresholds@gt0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@i915_pm_rps@thresholds@gt0.html> (i915#8925<https://gitlab.freedesktop.org/drm/intel/issues/8925>)
* igt@i915_pm_sseu@full-enable:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@i915_pm_sseu@full-enable.html> (i915#4387<https://gitlab.freedesktop.org/drm/intel/issues/4387>)
* igt@i915_query@query-topology-coherent-slice-mask:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html> (i915#6188<https://gitlab.freedesktop.org/drm/intel/issues/6188>)
* igt@i915_query@query-topology-unsupported:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@i915_query@query-topology-unsupported.html> (fdo#109302<https://bugs.freedesktop.org/show_bug.cgi?id=109302>)
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@i915_query@query-topology-unsupported.html> (fdo#109302<https://bugs.freedesktop.org/show_bug.cgi?id=109302>)
* igt@i915_selftest@live@gem_contexts:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-8/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-1/igt@i915_selftest@live@gem_contexts.html> (i915#9579<https://gitlab.freedesktop.org/drm/intel/issues/9579>)
* igt@i915_selftest@mock@memory_region:
* shard-mtlp: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@i915_selftest@mock@memory_region.html> (i915#9311<https://gitlab.freedesktop.org/drm/intel/issues/9311>)
* igt@i915_suspend@fence-restore-untiled:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-18/igt@i915_suspend@fence-restore-untiled.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +6 other tests skip
* igt@kms_addfb_basic@basic-y-tiled-legacy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html> (i915#4215<https://gitlab.freedesktop.org/drm/intel/issues/4215> / i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>)
* igt@kms_addfb_basic@clobberred-modifier:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@kms_addfb_basic@clobberred-modifier.html> (i915#4212<https://gitlab.freedesktop.org/drm/intel/issues/4212>)
* igt@kms_addfb_basic@tile-pitch-mismatch:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_addfb_basic@tile-pitch-mismatch.html> (i915#4212<https://gitlab.freedesktop.org/drm/intel/issues/4212> / i915#5608<https://gitlab.freedesktop.org/drm/intel/issues/5608>)
* igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 other tests fail
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
* shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 other tests fail
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>)
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>)
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb-size-overflow.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>)
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> (i915#4538<https://gitlab.freedesktop.org/drm/intel/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 other test skip
* igt@kms_big_fb@linear-32bpp-rotate-90:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_big_fb@linear-32bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/intel/issues/3638>) +1 other test skip
* igt@kms_big_fb@linear-64bpp-rotate-270:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +2 other tests skip
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +1 other test skip
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html> (i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) +18 other tests skip
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html> (i915#4538<https://gitlab.freedesktop.org/drm/intel/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) +4 other tests skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1 other test skip
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (i915#4538<https://gitlab.freedesktop.org/drm/intel/issues/4538>)
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +3 other tests skip
* igt@kms_big_joiner@basic:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@kms_big_joiner@basic.html> (i915#2705<https://gitlab.freedesktop.org/drm/intel/issues/2705>)
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087>) +3 other tests skip
* igt@kms_chamelium_color@ctm-max:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_chamelium_color@ctm-max.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
* igt@kms_chamelium_color@ctm-negative:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_chamelium_color@ctm-negative.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
* igt@kms_chamelium_color@gamma:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@kms_chamelium_color@gamma.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 other tests skip
* igt@kms_chamelium_frames@dp-crc-single:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-single.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +4 other tests skip
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +11 other tests skip
* igt@kms_chamelium_hpd@vga-hpd-fast:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-fast.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 other tests skip
* igt@kms_content_protection@dp-mst-lic-type-0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html> (i915#3299<https://gitlab.freedesktop.org/drm/intel/issues/3299>)
* igt@kms_content_protection@dp-mst-type-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html> (i915#3299<https://gitlab.freedesktop.org/drm/intel/issues/3299>)
* igt@kms_cursor_crc@cursor-offscreen-32x10:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 other test skip
* igt@kms_cursor_crc@cursor-onscreen-512x512:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 other test skip
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 other test skip
* igt@kms_cursor_crc@cursor-sliding-32x10:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2 other tests skip
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>)
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html> (i915#3546<https://gitlab.freedesktop.org/drm/intel/issues/3546>)
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +2 other tests skip
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
* shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>)
* igt@kms_dsc@dsc-fractional-bpp:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp.html> (i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840>)
* igt@kms_dsc@dsc-with-formats:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_dsc@dsc-with-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>)
* igt@kms_dsc@dsc-with-output-formats:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840>)
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) +4 other tests skip
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767>)
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>)
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +8 other tests skip
* igt@kms_flip@2x-nonexisting-fb:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-snb5/igt@kms_flip@2x-nonexisting-fb.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +31 other tests skip
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +20 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>)
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>)
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
* shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-glk5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +78 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>)
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +21 other tests skip
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html> (i915#6880<https://gitlab.freedesktop.org/drm/intel/issues/6880>) +1 other test fail
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html> (i915#3458<https://gitlab.freedesktop.org/drm/intel/issues/3458>) +16 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/intel/issues/3458>) +10 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +24 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html> (i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +8 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +8 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +4 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html> (fdo#110189<https://bugs.freedesktop.org/show_bug.cgi?id=110189>) +4 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +5 other tests skip
* igt@kms_hdr@bpc-switch:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_hdr@bpc-switch.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>)
* igt@kms_hdr@bpc-switch-dpms:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>) +1 other test skip
* igt@kms_hdr@invalid-metadata-sizes:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_hdr@invalid-metadata-sizes.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>)
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#1839<https://gitlab.freedesktop.org/drm/intel/issues/1839>)
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
* shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html> (i915#7862<https://gitlab.freedesktop.org/drm/intel/issues/7862>) +1 other test fail
* igt@kms_plane_lowres@tiling-yf:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_plane_lowres@tiling-yf.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8821<https://gitlab.freedesktop.org/drm/intel/issues/8821>)
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
* shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html> (i915#8292<https://gitlab.freedesktop.org/drm/intel/issues/8292>)
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176> / i915#9423<https://gitlab.freedesktop.org/drm/intel/issues/9423>) +3 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +23 other tests skip
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 other tests skip
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>)
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +11 other tests skip
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#9683<https://gitlab.freedesktop.org/drm/intel/issues/9683>)
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (i915#9683<https://gitlab.freedesktop.org/drm/intel/issues/9683>) +2 other tests skip
* igt@kms_psr@psr2_dpms:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_psr@psr2_dpms.html> (i915#9681<https://gitlab.freedesktop.org/drm/intel/issues/9681>) +1 other test skip
* igt@kms_psr@psr2_sprite_render:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_psr@psr2_sprite_render.html> (i915#9673<https://gitlab.freedesktop.org/drm/intel/issues/9673>) +2 other tests skip
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#9685<https://gitlab.freedesktop.org/drm/intel/issues/9685>)
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#5289<https://gitlab.freedesktop.org/drm/intel/issues/5289>)
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#5289<https://gitlab.freedesktop.org/drm/intel/issues/5289>)
* igt@kms_scaling_modes@scaling-mode-full-aspect:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>)
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
* shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html> (i915#5465<https://gitlab.freedesktop.org/drm/intel/issues/5465>) +1 other test fail
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>)
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html> (i915#9196<https://gitlab.freedesktop.org/drm/intel/issues/9196>)
* igt@kms_writeback@writeback-fb-id:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-16/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/intel/issues/2437>)
* igt@perf_pmu@busy-double-start@rcs0:
* shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@perf_pmu@busy-double-start@rcs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>)
* igt@perf_pmu@render-node-busy@ccs0:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@perf_pmu@render-node-busy@ccs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@perf_pmu@render-node-busy@ccs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>)
* igt@prime_vgem@basic-write:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-7/igt@prime_vgem@basic-write.html> (i915#3291<https://gitlab.freedesktop.org/drm/intel/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>)
* igt@prime_vgem@coherency-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@prime_vgem@coherency-gtt.html> (i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708> / i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>)
* igt@prime_vgem@fence-flip-hang:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>)
* igt@tools_test@sysfs_l3_parity:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@tools_test@sysfs_l3_parity.html> (i915#4818<https://gitlab.freedesktop.org/drm/intel/issues/4818>)
* igt@v3d/v3d_perfmon@get-values-valid-perfmon:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +3 other tests skip
* igt@v3d/v3d_submit_cl@multiple-job-submission:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@v3d/v3d_submit_cl@multiple-job-submission.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +3 other tests skip
* igt@v3d/v3d_submit_cl@single-out-sync:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-10/igt@v3d/v3d_submit_cl@single-out-sync.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315> / i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +2 other tests skip
* igt@v3d/v3d_submit_cl@valid-multisync-submission:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@v3d/v3d_submit_cl@valid-multisync-submission.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +13 other tests skip
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +2 other tests skip
* igt@vc4/vc4_tiling@set-bad-flags:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-2/igt@vc4/vc4_tiling@set-bad-flags.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +1 other test skip
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +7 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-14/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +3 other tests skip
Possible fixes
* igt@gem_ctx_exec@basic-nohangcheck:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html>
* igt@gem_eio@reset-stress:
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg1-17/igt@gem_eio@reset-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg1-15/igt@gem_eio@reset-stress.html>
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
* shard-dg2: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices@lmem0.html> (i915#7975<https://gitlab.freedesktop.org/drm/intel/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/intel/issues/8213>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html>
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> +1 other test pass
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
* shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html>
* igt@kms_cursor_legacy@single-bo@all-pipes:
* shard-mtlp: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html> (i915#2017<https://gitlab.freedesktop.org/drm/intel/issues/2017>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-2/igt@kms_cursor_legacy@single-bo@all-pipes.html>
* {igt@kms_pm_rpm@modeset-lpsp-stress}:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html> (i915#9519<https://gitlab.freedesktop.org/drm/intel/issues/9519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html>
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> (i915#9196<https://gitlab.freedesktop.org/drm/intel/issues/9196>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html>
* igt@perf@enable-disable@0-rcs0:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html> (i915#8724<https://gitlab.freedesktop.org/drm/intel/issues/8724>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-6/igt@perf@enable-disable@0-rcs0.html>
* igt@perf_pmu@busy-double-start@ccs0:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html>
Warnings
* igt@kms_async_flips@crc@pipe-b-edp-1:
* shard-mtlp: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-6/igt@kms_async_flips@crc@pipe-b-edp-1.html> (i915#8561<https://gitlab.freedesktop.org/drm/intel/issues/8561>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-mtlp-5/igt@kms_async_flips@crc@pipe-b-edp-1.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +2 other tests fail
* igt@kms_content_protection@type1:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-2/igt@kms_content_protection@type1.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/shard-dg2-11/igt@kms_content_protection@type1.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118> / i915#7162<https://gitlab.freedesktop.org/drm/intel/issues/7162>)
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
* CI: CI-20190529 -> None
* IGT: IGT_7597 -> IGTPW_10244
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13911: 5429d55de723544dfc0630cf39d96392052b27a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10244: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10244/index.html
IGT_7597: 380983dbd9bb2f7eea5e917e8fed0569bfe8cf9c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
[-- Attachment #2: Type: text/html, Size: 68120 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-11-24 13:26 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-22 13:36 [igt-dev] [PATCH i-g-t] kms_addfb_basic: Skip not relevant test for Xe Jouni Högander
2023-11-22 14:34 ` Sharma, Swati2
2023-11-23 14:00 ` Hogander, Jouni
2023-11-22 19:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-11-22 20:12 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-11-22 20:50 ` [igt-dev] [PATCH i-g-t] " Juha-Pekka Heikkila
2023-11-23 10:03 ` Kamil Konieczny
2023-11-23 10:27 ` Hogander, Jouni
2023-11-23 23:02 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
2023-11-24 13:25 ` Hogander, Jouni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox