* [PATCH i-g-t v5 0/2] Async flips with tiled modifiers
@ 2025-04-24 7:45 Santhosh Reddy Guddati
2025-04-24 7:45 ` [PATCH i-g-t v5 1/2] tests/kms_async_flips: Split subtest to handle linear buffers separately Santhosh Reddy Guddati
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Santhosh Reddy Guddati @ 2025-04-24 7:45 UTC (permalink / raw)
To: igt-dev
Cc: karthik.b.s, arun.r.murthy, chaitanya.kumar.borah,
Santhosh Reddy Guddati
Async flips with linear modifiers combination is a corner and not practical to use,
update the existing subtests to use the tiled modifiers.
Santhosh Reddy Guddati (2):
tests/kms_async_flips: Split subtest to handle linear buffers
separately
tests/kms_async_flips: Use tiling modifiers
tests/kms_async_flips.c | 68 +++++++++++++++++++++++++++++++----------
1 file changed, 52 insertions(+), 16 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t v5 1/2] tests/kms_async_flips: Split subtest to handle linear buffers separately
2025-04-24 7:45 [PATCH i-g-t v5 0/2] Async flips with tiled modifiers Santhosh Reddy Guddati
@ 2025-04-24 7:45 ` Santhosh Reddy Guddati
2025-04-28 4:45 ` Karthik B S
2025-04-24 7:45 ` [PATCH i-g-t v5 2/2] tests/kms_async_flips: Use tiling modifiers Santhosh Reddy Guddati
` (4 subsequent siblings)
5 siblings, 1 reply; 8+ messages in thread
From: Santhosh Reddy Guddati @ 2025-04-24 7:45 UTC (permalink / raw)
To: igt-dev
Cc: karthik.b.s, arun.r.murthy, chaitanya.kumar.borah,
Santhosh Reddy Guddati
As linear buffers are considered corner cases, split the existing subtests
run_with_modifiers to handle as a separate subtest.
V2:
Rename existing subtest to tiled modifier and make the tiled subtest
intel specific, fix linear modifier subtest to avoid skip on non intel
platforms (Karthik).
V3:
Refactor run_test for linear modifier and update run_test_with_modifiers
to skip for linear modifier only (Karthik).
V4:
Set allow_fail based on linear modifier and intel device.
V5:
Fix build
Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
---
tests/kms_async_flips.c | 65 +++++++++++++++++++++++++++++++----------
1 file changed, 49 insertions(+), 16 deletions(-)
diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
index 031417ed8..d8708d803 100644
--- a/tests/kms_async_flips.c
+++ b/tests/kms_async_flips.c
@@ -45,7 +45,7 @@
* Description: Verify the async flip functionality and the fps during async flips
* Alternate between sync and async flips
*
- * SUBTEST: async-flip-with-page-flip-events
+ * SUBTEST: async-flip-with-page-flip-events-tiled
* Description: Verify the async flip functionality and the fps during async flips
* Wait for page flip events in between successive asynchronous flips
*
@@ -66,7 +66,7 @@
* SUBTEST: alternate-sync-async-flip-atomic
* Description: Verify the async flip functionality and the fps during async flips using atomic path
*
- * SUBTEST: async-flip-with-page-flip-events-atomic
+ * SUBTEST: async-flip-with-page-flip-events-tiled-atomic
* Description: Wait for page flip events in between successive asynchronous flips using atomic path
*
* SUBTEST: test-time-stamp-atomic
@@ -88,6 +88,14 @@
*
* SUBTEST: overlay-atomic
* Description: Verify overlay planes with async flips in atomic API
+ *
+ * SUBTEST: async-flip-with-page-flip-events-linear
+ * Description: Verify the async flip functionality and the fps during async flips
+ * with linear modifier
+ *
+ * SUBTEST: async-flip-with-page-flip-events-linear-atomic
+ * Description: Verify the async flip functionality and the fps during async flips
+ * with linear modifier in Atomic API
*/
#define CURSOR_POS 128
@@ -128,6 +136,7 @@ typedef struct {
struct buf_ops *bops;
bool atomic_path;
bool overlay_path;
+ bool linear_modifier;
} data_t;
static void flip_handler(int fd_, unsigned int sequence, unsigned int tv_sec,
@@ -266,6 +275,7 @@ static void test_init_ops(data_t *data)
data->alternate_sync_async = false;
data->atomic_path = false;
data->overlay_path = false;
+ data->linear_modifier = false;
}
static void test_init_fbs(data_t *data)
@@ -768,8 +778,14 @@ static void run_test(data_t *data, void (*test)(data_t *))
continue;
test_init(data);
- data->allow_fail = false;
- data->modifier = default_modifier(data);
+
+ if (data->linear_modifier && is_intel_device(data->drm_fd))
+ data->allow_fail = true;
+ else
+ data->allow_fail = false;
+
+ data->modifier = data->linear_modifier ? DRM_FORMAT_MOD_LINEAR : default_modifier(data);
+
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name) {
/*
* FIXME: joiner+async flip is busted currently in KMD.
@@ -792,15 +808,20 @@ static void run_test_with_modifiers(data_t *data, void (*test)(data_t *))
test_init(data);
for (int i = 0; i < data->plane->format_mod_count; i++) {
+ uint64_t modifier = data->plane->modifiers[i];
+
if (data->plane->formats[i] != DRM_FORMAT_XRGB8888)
continue;
+ if (modifier == DRM_FORMAT_MOD_LINEAR)
+ continue;
+
data->allow_fail = true;
- data->modifier = data->plane->modifiers[i];
+ data->modifier = modifier;
igt_dynamic_f("pipe-%s-%s-%s", kmstest_pipe_name(data->pipe),
data->output->name,
- igt_fb_modifier_name(data->modifier)) {
+ igt_fb_modifier_name(modifier)) {
/*
* FIXME: joiner+async flip is busted currently in KMD.
* Remove this check once the issues are fixed in KMD.
@@ -844,23 +865,35 @@ igt_main
require_monotonic_timestamp(data.drm_fd);
igt_describe("Wait for page flip events in between successive asynchronous flips");
- igt_subtest_with_dynamic("async-flip-with-page-flip-events") {
+ igt_subtest_with_dynamic("async-flip-with-page-flip-events-tiled") {
test_init_ops(&data);
- if (is_intel_device(data.drm_fd))
- run_test_with_modifiers(&data, test_async_flip);
- else
- run_test(&data, test_async_flip);
+ igt_require(is_intel_device(data.drm_fd));
+ run_test_with_modifiers(&data, test_async_flip);
}
igt_describe("Wait for page flip events in between successive "
"asynchronous flips using atomic path");
- igt_subtest_with_dynamic("async-flip-with-page-flip-events-atomic") {
+ igt_subtest_with_dynamic("async-flip-with-page-flip-events-tiled-atomic") {
test_init_ops(&data);
data.atomic_path = true;
- if (is_intel_device(data.drm_fd))
- run_test_with_modifiers(&data, test_async_flip);
- else
- run_test(&data, test_async_flip);
+ igt_require(is_intel_device(data.drm_fd));
+ run_test_with_modifiers(&data, test_async_flip);
+ }
+
+ igt_describe("Wait for page flip events in between successive asynchronous "
+ "flips with linear modifiers");
+ igt_subtest_with_dynamic("async-flip-with-page-flip-events-linear") {
+ test_init_ops(&data);
+ data.linear_modifier = true;
+ run_test(&data, test_async_flip);
+ }
+
+ igt_describe("Wait for page flip events in between successive asynchronous "
+ "flips using atomic path with linear modifiers");
+ igt_subtest_with_dynamic("async-flip-with-page-flip-events-linear-atomic") {
+ test_init_ops(&data);
+ data.linear_modifier = true;
+ run_test(&data, test_async_flip);
}
igt_describe("Alternate between sync and async flips");
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v5 2/2] tests/kms_async_flips: Use tiling modifiers
2025-04-24 7:45 [PATCH i-g-t v5 0/2] Async flips with tiled modifiers Santhosh Reddy Guddati
2025-04-24 7:45 ` [PATCH i-g-t v5 1/2] tests/kms_async_flips: Split subtest to handle linear buffers separately Santhosh Reddy Guddati
@ 2025-04-24 7:45 ` Santhosh Reddy Guddati
2025-04-24 15:54 ` ✓ i915.CI.BAT: success for Async flips with tiled modifiers Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Santhosh Reddy Guddati @ 2025-04-24 7:45 UTC (permalink / raw)
To: igt-dev
Cc: karthik.b.s, arun.r.murthy, chaitanya.kumar.borah,
Santhosh Reddy Guddati
As async with linear modifiers is not a practical and common use case,
override the default modifier with tiled for all the async flip subtests
V2:
move handling to default_modifier (Karthik)
Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
tests/kms_async_flips.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
index d8708d803..97128cfad 100644
--- a/tests/kms_async_flips.c
+++ b/tests/kms_async_flips.c
@@ -194,6 +194,9 @@ static void wait_flip_event(data_t *data)
static uint64_t default_modifier(data_t *data)
{
if (igt_display_has_format_mod(&data->display, DRM_FORMAT_XRGB8888,
+ I915_FORMAT_MOD_4_TILED))
+ return I915_FORMAT_MOD_4_TILED;
+ else if (igt_display_has_format_mod(&data->display, DRM_FORMAT_XRGB8888,
I915_FORMAT_MOD_X_TILED))
return I915_FORMAT_MOD_X_TILED;
else
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for Async flips with tiled modifiers
2025-04-24 7:45 [PATCH i-g-t v5 0/2] Async flips with tiled modifiers Santhosh Reddy Guddati
2025-04-24 7:45 ` [PATCH i-g-t v5 1/2] tests/kms_async_flips: Split subtest to handle linear buffers separately Santhosh Reddy Guddati
2025-04-24 7:45 ` [PATCH i-g-t v5 2/2] tests/kms_async_flips: Use tiling modifiers Santhosh Reddy Guddati
@ 2025-04-24 15:54 ` Patchwork
2025-04-24 16:15 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-04-24 15:54 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2977 bytes --]
== Series Details ==
Series: Async flips with tiled modifiers
URL : https://patchwork.freedesktop.org/series/148182/
State : success
== Summary ==
CI Bug Log - changes from IGT_8336 -> IGTPW_13035
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/index.html
Participating hosts (42 -> 41)
------------------------------
Missing (1): fi-glk-j4005
Known issues
------------
Here are the changes found in IGTPW_13035 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/bat-mtlp-8/igt@i915_selftest@live.html
- bat-arlh-2: [PASS][3] -> [INCOMPLETE][4] ([i915#14046]) +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/bat-arlh-2/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-adlp-11: [PASS][5] -> [ABORT][6] ([i915#13696]) +1 other test abort
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/bat-adlp-11/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/bat-adlp-11/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/bat-arls-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/bat-arls-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13696]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13696
[i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8336 -> IGTPW_13035
CI-20190529: 20190529
CI_DRM_16460: 6176f71822602f52bc4327965090275c5570ed0d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13035: 26be598b3a5d51e641d202b0004628d279ae3992 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8336: 8336
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/index.html
[-- Attachment #2: Type: text/html, Size: 3787 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for Async flips with tiled modifiers
2025-04-24 7:45 [PATCH i-g-t v5 0/2] Async flips with tiled modifiers Santhosh Reddy Guddati
` (2 preceding siblings ...)
2025-04-24 15:54 ` ✓ i915.CI.BAT: success for Async flips with tiled modifiers Patchwork
@ 2025-04-24 16:15 ` Patchwork
2025-04-25 0:52 ` ✓ i915.CI.Full: " Patchwork
2025-04-25 11:59 ` ✗ Xe.CI.Full: failure " Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-04-24 16:15 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 850 bytes --]
== Series Details ==
Series: Async flips with tiled modifiers
URL : https://patchwork.freedesktop.org/series/148182/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8336_BAT -> XEIGTPW_13035_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8336 -> IGTPW_13035
IGTPW_13035: 26be598b3a5d51e641d202b0004628d279ae3992 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8336: 8336
xe-2994-6176f71822602f52bc4327965090275c5570ed0d: 6176f71822602f52bc4327965090275c5570ed0d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/index.html
[-- Attachment #2: Type: text/html, Size: 1395 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.Full: success for Async flips with tiled modifiers
2025-04-24 7:45 [PATCH i-g-t v5 0/2] Async flips with tiled modifiers Santhosh Reddy Guddati
` (3 preceding siblings ...)
2025-04-24 16:15 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-04-25 0:52 ` Patchwork
2025-04-25 11:59 ` ✗ Xe.CI.Full: failure " Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-04-25 0:52 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 104003 bytes --]
== Series Details ==
Series: Async flips with tiled modifiers
URL : https://patchwork.freedesktop.org/series/148182/
State : success
== Summary ==
CI Bug Log - changes from IGT_8336_full -> IGTPW_13035_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/index.html
Participating hosts (11 -> 11)
------------------------------
Additional (1): shard-snb-0
Missing (1): shard-dg2-set2
New tests
---------
New tests have been introduced between IGT_8336_full and IGTPW_13035_full:
### New IGT tests (138) ###
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.56, 12.54] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.56, 12.54] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.79] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.15, 2.26] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [2.31] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.77] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.11, 2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.77] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.78] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.79] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.30] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.76] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.77] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.78] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled:
- Statuses : 4 pass(s)
- Exec time: [4.56, 33.04] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic:
- Statuses : 3 pass(s)
- Exec time: [27.89, 33.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.32] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.81] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.30] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.27] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.30] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-3-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.23] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-3-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.21] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-4-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.30] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.20] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.31] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.75] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.28] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.28] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.31] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-3-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-4-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.24] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-4-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.20] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.28] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.77] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.26] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.26] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.29] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.20] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-4-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.27] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-4-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.31] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.79] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.26] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.27] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.28] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-3-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-3-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-4-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.25] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-4-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.28] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.80] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.26] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.27] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.29] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.25] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-x:
- Statuses : 2 pass(s)
- Exec time: [2.15, 2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.21] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-4-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.29] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-4-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.20] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.29] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.76] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.27] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.28] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.30] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-x:
- Statuses : 2 pass(s)
- Exec time: [2.12, 2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-4-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.24] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-4-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.29] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.82] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.27] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.28] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.30] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.21] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.20] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-4-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.26] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-4-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.30] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-edp-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.74] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.23] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-edp-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.26] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.30] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-1-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-1-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-4-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.25] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-4-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
Known issues
------------
Here are the changes found in IGTPW_13035_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][1] ([i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-13/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-5/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-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_13035/shard-dg2-10/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_bad_reloc@negative-reloc-bltcopy:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#3281]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-3/igt@gem_bad_reloc@negative-reloc-bltcopy.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#7697])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_compute@compute-square:
- shard-dg2: NOTRUN -> [FAIL][6] ([i915#13665])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-4/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#6335])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [ABORT][8] ([i915#13427])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8562])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-1/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#8562])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2-9: NOTRUN -> [SKIP][12] ([i915#8555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#5882]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#280])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-3/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#280]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@reset-stress:
- shard-mtlp: [PASS][17] -> [ABORT][18] ([i915#13193] / [i915#13723]) +4 other tests abort
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-mtlp-3/igt@gem_eio@reset-stress.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-7/igt@gem_eio@reset-stress.html
- shard-dg2: [PASS][19] -> [FAIL][20] ([i915#12543] / [i915#5784])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-10/igt@gem_eio@reset-stress.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-1/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][21] -> [FAIL][22] ([i915#12714] / [i915#5784])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg1-14/igt@gem_eio@unwedge-stress.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2-9: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-1/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2-9: NOTRUN -> [SKIP][27] ([i915#5107])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) +8 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-cpu-active.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][31] ([i915#3281]) +5 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-1/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg2-9: NOTRUN -> [SKIP][34] ([i915#4860])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4860]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#4860])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][37] ([i915#4613]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-glk2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4613])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#8289])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@pf-nonblock:
- shard-dg2-9: NOTRUN -> [SKIP][41] ([i915#4083]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_mmap@pf-nonblock.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4077]) +13 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-3/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4077]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4077])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-16/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#4077]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@pf-nonblock:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4083])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@gem_mmap_wc@pf-nonblock.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4083]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-3/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg2-9: NOTRUN -> [SKIP][48] ([i915#3282])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-snoop.html
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3282])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3282])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3282]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4270])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: NOTRUN -> [TIMEOUT][55] ([i915#12917] / [i915#12964])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-4/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#5190] / [i915#8428]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][58] ([i915#5190] / [i915#8428]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@access-control:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#3297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-sync:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3297]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#3282] / [i915#3297])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4880])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-3/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: NOTRUN -> [INCOMPLETE][66] ([i915#13356])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#2527])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#2856]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-3/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#2856])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#2856])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#14118])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#14118])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#11681] / [i915#6621])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-6/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#11681] / [i915#6621])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-14/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2-9: NOTRUN -> [SKIP][75] ([i915#11681])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4387])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][77] ([i915#13502] / [i915#4817])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-glk1/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#7707])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4212])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-5/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4212]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html
* {igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-4-y-rc-ccs-cc} (NEW):
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#8709]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-4-y-rc-ccs-cc.html
* {igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4-rc-ccs-cc} (NEW):
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8709]) +15 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4-rc-ccs-cc.html
* {igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc} (NEW):
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#8709]) +15 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#9531])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#9531])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [PASS][86] -> [FAIL][87] ([i915#5956])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#1769] / [i915#3555])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][89] ([i915#5956])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#1769] / [i915#3555])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#5286]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#4538] / [i915#5286])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][93] +6 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-8/igt@kms_big_fb@linear-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3638])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-12/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#3638]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#5190]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5190]) +10 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5190]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4538]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#6095]) +152 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-15/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#14098] / [i915#6095]) +19 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#10307] / [i915#6095]) +168 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][104] ([i915#12313]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6095]) +24 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#12313])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][107] ([i915#10307] / [i915#6095]) +29 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#6095]) +16 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#6095]) +26 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][110] ([i915#12796]) +1 other test incomplete
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][111] +226 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-glk2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#13781]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#13784])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#13783]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#11151] / [i915#7828]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-9: NOTRUN -> [SKIP][116] +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][117] +10 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#11151] / [i915#7828]) +10 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-4/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#11151] / [i915#7828]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#11151] / [i915#7828])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][122] ([i915#7173])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-3.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#3299])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#9424])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6944] / [i915#9424]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#3555]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8814])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2-9: NOTRUN -> [SKIP][128] ([i915#3555]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#13049]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#13049]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-9: NOTRUN -> [SKIP][131] ([i915#13049])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: NOTRUN -> [FAIL][132] ([i915#13566]) +1 other test fail
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][133] ([i915#13046] / [i915#5354]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#9809]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4103] / [i915#4213]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#4103])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#13046] / [i915#5354]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#9833])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#13749])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#13749])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#13749])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#13707])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#13707])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2-9: NOTRUN -> [SKIP][144] ([i915#3840] / [i915#9688])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#3840])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#3555] / [i915#3840])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2-9: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#3840])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3840] / [i915#9053])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#3955])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#3469])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-16/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#4854])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#9934]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-5/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3637] / [i915#9934]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-4/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#9934]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#9934]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-17/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][156] ([i915#12745] / [i915#4839])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][157] ([i915#4839])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][158] ([i915#9934]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-snb: [PASS][159] -> [FAIL][160] ([i915#11832] / [i915#13734]) +1 other test fail
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-snb6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-snb1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][161] ([i915#13027]) +1 other test fail
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-mtlp: [PASS][162] -> [FAIL][163] ([i915#13734]) +4 other tests fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-mtlp-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
- shard-dg2: [PASS][164] -> [FAIL][165] ([i915#11832] / [i915#13734])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-2/igt@kms_flip@plain-flip-ts-check-interruptible.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3:
- shard-dg2: [PASS][166] -> [FAIL][167] ([i915#13734]) +2 other tests fail
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-2/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-snb: NOTRUN -> [SKIP][168] +27 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-snb5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#2672] / [i915#3555])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][171] ([i915#2672] / [i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#2672]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg2-9: NOTRUN -> [SKIP][173] ([i915#2672])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#2672]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8708]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][179] ([i915#8708]) +6 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2-9: NOTRUN -> [SKIP][180] ([i915#5354]) +12 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#1825]) +8 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3023]) +12 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8708]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#5354]) +28 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][185] +6 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][186] ([i915#3458]) +9 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#3458]) +15 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#3458]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#8708]) +11 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#1825]) +17 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#6118])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#12713])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-17/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#10656])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#13688])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#13522])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-13/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2-9: NOTRUN -> [SKIP][200] ([i915#8821])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-y@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][201] ([i915#12964]) +5 other tests dmesg-warn
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_plane_lowres@tiling-y@pipe-b-hdmi-a-2.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#13958])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#8806])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8806])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-9: NOTRUN -> [SKIP][205] ([i915#12247] / [i915#9423])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#12247]) +5 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#3555]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#12247]) +3 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#12247] / [i915#6953])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#6953])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#12247]) +3 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#12247] / [i915#3555] / [i915#9423])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#12247]) +3 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg2-9: NOTRUN -> [SKIP][214] ([i915#12247] / [i915#6953] / [i915#9423])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- shard-dg2-9: NOTRUN -> [SKIP][215] ([i915#12247]) +7 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#9685])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#9340])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8430])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][219] -> [SKIP][220] ([i915#9519]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9519])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#6524] / [i915#6805]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-5/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#6524]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_prime@d3hot.html
- shard-dg2-9: NOTRUN -> [SKIP][224] ([i915#6524] / [i915#6805])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][225] ([i915#11520]) +5 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-glk2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#9808])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#12316]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#11520]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-14/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-dg2-9: NOTRUN -> [SKIP][229] ([i915#11520]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#11520]) +6 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][231] ([i915#11520])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-snb5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#11520]) +4 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#9683])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-9: NOTRUN -> [SKIP][234] ([i915#9683])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#9683]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#9688]) +5 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-2/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#1072] / [i915#9732]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-18/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#1072] / [i915#9732]) +11 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][239] ([i915#1072] / [i915#9732]) +9 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#1072] / [i915#9732]) +17 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#5289]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#12755]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#12755])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][244] ([i915#13179]) +1 other test abort
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#3555]) +5 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#8623])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][247] ([i915#12276]) +1 other test incomplete
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-glk1/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#8808] / [i915#9906])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#2437] / [i915#9412])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@perf@global-sseu-config:
- shard-dg2-9: NOTRUN -> [SKIP][250] ([i915#7387])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2434])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-8/igt@perf@mi-rpc.html
* igt@perf@non-zero-reason:
- shard-dg2: NOTRUN -> [FAIL][252] ([i915#9100]) +1 other test fail
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@perf@non-zero-reason.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#2433])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-8/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: NOTRUN -> [FAIL][254] ([i915#4349]) +3 other tests fail
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@perf_pmu@busy-double-start.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2-9: NOTRUN -> [SKIP][255] ([i915#3291] / [i915#3708])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@prime_vgem@basic-fence-read.html
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#3291] / [i915#3708])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@prime_vgem@basic-fence-read.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#3708])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-18/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#3708] / [i915#4077])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-5/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf@vf-5:
- shard-mtlp: NOTRUN -> [FAIL][259] ([i915#12910]) +19 other tests fail
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@sriov_basic@bind-unbind-vf@vf-5.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][260] +13 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-rkl-3/igt@tools_test@sysfs_l3_parity.html
- shard-dg2-9: NOTRUN -> [SKIP][261] ([i915#4818])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-9/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_eio@kms:
- shard-dg2: [FAIL][262] ([i915#5784]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-10/igt@gem_eio@kms.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-5/igt@gem_eio@kms.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][264] ([i915#11441] / [i915#13304]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [INCOMPLETE][266] ([i915#11441]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][268] ([i915#5493]) -> [PASS][269] +1 other test pass
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_offset@mmap-unmap@smem0:
- shard-snb: [INCOMPLETE][270] -> [PASS][271] +1 other test pass
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-snb1/igt@gem_mmap_offset@mmap-unmap@smem0.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-snb5/igt@gem_mmap_offset@mmap-unmap@smem0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][272] ([i915#5138]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_dp_aux_dev:
- shard-dg2: [SKIP][274] ([i915#1257]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-2/igt@kms_dp_aux_dev.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@kms_dp_aux_dev.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2: [FAIL][276] ([i915#13027]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-11/igt@kms_flip@flip-vs-expired-vblank.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-snb: [SKIP][278] -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: [SKIP][280] ([i915#3555] / [i915#8228]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-8/igt@kms_hdr@bpc-switch.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@kms_hdr@bpc-switch.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [DMESG-WARN][282] ([i915#4423]) -> [PASS][283] +1 other test pass
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg1-16/igt@kms_pm_rpm@i2c.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-14/igt@kms_pm_rpm@i2c.html
* igt@kms_setmode@basic:
- shard-mtlp: [FAIL][284] ([i915#5465]) -> [PASS][285] +1 other test pass
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-mtlp-3/igt@kms_setmode@basic.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-4/igt@kms_setmode@basic.html
* igt@perf_pmu@busy-hang@vcs1:
- shard-mtlp: [ABORT][286] ([i915#13193] / [i915#13723]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-mtlp-7/igt@perf_pmu@busy-hang@vcs1.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-mtlp-1/igt@perf_pmu@busy-hang@vcs1.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: [SKIP][288] ([i915#3638]) -> [SKIP][289] ([i915#3638] / [i915#4423])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-19/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: [SKIP][290] ([i915#4423] / [i915#6095]) -> [SKIP][291] ([i915#6095]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg1-15/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-14/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_content_protection@atomic:
- shard-snb: [SKIP][292] -> [INCOMPLETE][293] ([i915#8816])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-snb6/igt@kms_content_protection@atomic.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-snb1/igt@kms_content_protection@atomic.html
- shard-dg2: [SKIP][294] ([i915#7118] / [i915#9424]) -> [FAIL][295] ([i915#7173])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-8/igt@kms_content_protection@atomic.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-11/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][296] ([i915#9424]) -> [SKIP][297] ([i915#9433])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg1-17/igt@kms_content_protection@mei-interface.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [FAIL][298] ([i915#7173]) -> [SKIP][299] ([i915#7118])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-11/igt@kms_content_protection@srm.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][300] ([i915#7118] / [i915#9424]) -> [SKIP][301] ([i915#7118] / [i915#7162] / [i915#9424])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-4/igt@kms_content_protection@type1.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-10/igt@kms_content_protection@type1.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][302] ([i915#3458]) -> [SKIP][303] ([i915#10433] / [i915#3458]) +4 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8336/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13502]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13502
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13665]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723
[i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8336 -> IGTPW_13035
CI-20190529: 20190529
CI_DRM_16460: 6176f71822602f52bc4327965090275c5570ed0d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13035: 26be598b3a5d51e641d202b0004628d279ae3992 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8336: 8336
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13035/index.html
[-- Attachment #2: Type: text/html, Size: 129804 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for Async flips with tiled modifiers
2025-04-24 7:45 [PATCH i-g-t v5 0/2] Async flips with tiled modifiers Santhosh Reddy Guddati
` (4 preceding siblings ...)
2025-04-25 0:52 ` ✓ i915.CI.Full: " Patchwork
@ 2025-04-25 11:59 ` Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-04-25 11:59 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 104353 bytes --]
== Series Details ==
Series: Async flips with tiled modifiers
URL : https://patchwork.freedesktop.org/series/148182/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8336_FULL -> XEIGTPW_13035_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_13035_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_13035_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 3)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_13035_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_reset@gt-reset-stress:
- shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-435/igt@xe_exec_reset@gt-reset-stress.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-433/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: NOTRUN -> [ABORT][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
New tests
---------
New tests have been introduced between XEIGT_8336_FULL and XEIGTPW_13035_FULL:
### New IGT tests (160) ###
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- Statuses : 1 fail(s) 2 pass(s)
- Exec time: [10.01, 19.59] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic:
- Statuses : 1 fail(s) 2 pass(s)
- Exec time: [9.88, 19.68] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-dp-2:
- Statuses : 2 pass(s)
- Exec time: [2.11, 2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-edp-1:
- Statuses : 1 fail(s)
- Exec time: [2.94] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-dp-2:
- Statuses : 2 pass(s)
- Exec time: [2.12, 2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-edp-1:
- Statuses : 1 fail(s)
- Exec time: [2.81] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.09] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-dp-2:
- Statuses : 2 pass(s)
- Exec time: [2.12, 2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- Statuses : 1 fail(s)
- Exec time: [2.83] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.09] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-d-dp-2:
- Statuses : 2 pass(s)
- Exec time: [2.13, 2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.09] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-edp-1:
- Statuses : 1 fail(s)
- Exec time: [3.03] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [2.20] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-edp-1:
- Statuses : 1 fail(s)
- Exec time: [2.81] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- Statuses : 1 fail(s)
- Exec time: [2.85] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled:
- Statuses : 3 pass(s)
- Exec time: [22.77, 53.61] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic:
- Statuses : 3 pass(s)
- Exec time: [22.73, 53.57] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-dp-4-4:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-dp-4-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-dp-4-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.09] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-dp-4-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-dp-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.21] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.82] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-x:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-dp-4-4:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-dp-4-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-dp-4-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-dp-4-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.09] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-dp-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.88] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-6-4:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-6-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-6-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-6-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-6-x:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-dp-4-4:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-dp-4-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-dp-4-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-dp-4-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.09] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-dp-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.87] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-6-4:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-6-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-6-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-6-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.09] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-6-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-dp-4-4:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-dp-4-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-dp-4-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-dp-4-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-dp-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-6-4:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-6-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-6-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-6-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-6-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-dp-4-4:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-dp-4-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-dp-4-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.09] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-dp-4-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-dp-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.21] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.83] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-6-4:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-6-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-6-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-6-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-6-x:
- Statuses : 1 pass(s)
- Exec time: [2.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-dp-4-4:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-dp-4-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-dp-4-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-dp-4-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.09] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-dp-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.20] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.88] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-6-4:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-6-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-6-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.05] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-6-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-6-x:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-dp-4-4:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-dp-4-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.16] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-dp-4-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-dp-4-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-dp-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.88] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-6-4:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-6-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-6-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-6-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-hdmi-a-6-x:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.11] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-3-4:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-3-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-3-x:
- Statuses : 1 pass(s)
- Exec time: [2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-6-4:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-6-4-mc-ccs:
- Statuses : 1 skip(s)
- Exec time: [0.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-6-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.06] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-6-4-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.10] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-6-x:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
Known issues
------------
Here are the changes found in XEIGTPW_13035_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* {igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1} (NEW):
- shard-lnl: NOTRUN -> [FAIL][4] ([Intel XE#911]) +7 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* {igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#3767]) +31 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#316]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-435/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1467])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#607])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#607])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#619])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +6 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2191])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2191])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#367])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +8 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2907])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3432]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#787]) +167 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2669]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][30] ([Intel XE#3113])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][33] ([Intel XE#3124])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][34] ([Intel XE#1727] / [Intel XE#3113])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#455] / [Intel XE#787]) +32 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#4418])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#306])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#306])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2252]) +8 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +8 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1178])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2390])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +2 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1188]) +1 other test fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-435/igt@kms_content_protection@uevent.html
- shard-bmg: NOTRUN -> [FAIL][48] ([Intel XE#1188]) +1 other test fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1424]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#308])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2321]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2321])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#455]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-435/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2320])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-64x64.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#309]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-bmg: [PASS][58] -> [INCOMPLETE][59] ([Intel XE#3226])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#323])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#2291]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2291]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#4302])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1340])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#4354])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-8/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2244])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#4422])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#4422])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#4422])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][72] ([Intel XE#3321])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#3321])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1421]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-7/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#2316]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@basic-plain-flip:
- shard-bmg: NOTRUN -> [DMESG-WARN][78] ([Intel XE#3428])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-6/igt@kms_flip@basic-plain-flip.html
* igt@kms_flip@dpms-vs-vblank-race:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#4208] / [i915#2575]) +6 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_flip@dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#301]) +5 other tests fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][82] -> [DMESG-WARN][83] ([Intel XE#3428]) +5 other tests dmesg-warn
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#301]) +2 other tests fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-lnl: [PASS][86] -> [FAIL][87] ([Intel XE#886]) +1 other test fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-1/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip@plain-flip-ts-check@a-hdmi-a3:
- shard-bmg: [PASS][88] -> [FAIL][89] ([Intel XE#2882]) +1 other test fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-4/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1401]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397] / [Intel XE#1745])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1397])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293] / [Intel XE#2380])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2293])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#352])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-7/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2311]) +18 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2312]) +6 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#4141]) +5 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#656]) +18 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1469])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#651]) +24 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#651]) +9 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#658])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1158])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2350])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#653]) +21 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2313]) +15 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2502])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-6/igt@kms_getfb@getfb-reject-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#605])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [PASS][113] -> [SKIP][114] ([Intel XE#1503])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-2/igt@kms_hdr@static-toggle-dpms.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#4298])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_lease@lease-invalid-crtc:
- shard-dg2-set2: [PASS][116] -> [SKIP][117] ([Intel XE#4208] / [i915#2575]) +14 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-433/igt@kms_lease@lease-invalid-crtc.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_lease@lease-invalid-crtc.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-lnl: NOTRUN -> [INCOMPLETE][118] ([Intel XE#4735])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-2/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
- shard-lnl: NOTRUN -> [WARN][119] ([Intel XE#4801])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-2/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [PASS][120] -> [FAIL][121] ([Intel XE#616]) +1 other test fail
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][122] ([Intel XE#616]) +3 other tests fail
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#599]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][124] -> [SKIP][125] ([Intel XE#4596])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2763]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +7 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2763]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#870])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#908])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][132] -> [FAIL][133] ([Intel XE#718]) +1 other test fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1489]) +5 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#4608]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2893])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1489]) +4 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-7/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#4609]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1406]) +5 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-4/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2351] / [Intel XE#4208])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2414])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2330]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1127]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1127])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#3414] / [Intel XE#3904])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-8/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][151] -> [FAIL][152] ([Intel XE#2883]) +2 other tests fail
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-1/igt@kms_setmode@basic.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_setmode@basic.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1435])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#362])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flipline:
- shard-lnl: [PASS][155] -> [FAIL][156] ([Intel XE#4227]) +1 other test fail
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-lnl-1/igt@kms_vrr@flipline.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-2/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1499])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-3/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#756])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_eudebug@basic-close:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#4837]) +8 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-7/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#4837]) +7 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-1/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#4837]) +7 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#688]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2322]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-dg2-set2: [PASS][165] -> [SKIP][166] ([Intel XE#1392]) +5 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#1392]) +6 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@once-userptr-invalidate-race:
- shard-dg2-set2: [PASS][168] -> [SKIP][169] ([Intel XE#4208]) +29 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-432/igt@xe_exec_basic@once-userptr-invalidate-race.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_exec_basic@once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#288]) +21 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#2360])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#255])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#2833])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_oa@non-privileged-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-432/igt@xe_oa@non-privileged-access-vaddr.html
* igt@xe_oa@syncs-syncobj-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_oa@syncs-syncobj-wait-cfg.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#2838] / [Intel XE#979])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#979])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][178] ([Intel XE#1173]) +1 other test fail
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#2284] / [Intel XE#366])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-5/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [PASS][180] -> [FAIL][181] ([Intel XE#4817]) +1 other test fail
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-464/igt@xe_pmu@gt-frequency.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@xe_pmu@gt-frequency.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#944]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#944]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-8/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#944])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-432/igt@xe_query@multigpu-query-topology.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#4814]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-433/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#4130])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
- shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#4130]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-435/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#4130])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-6/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#3342]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_vm@large-userptr-misaligned-binds-2097152:
- shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#4208]) +15 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_vm@large-userptr-misaligned-binds-2097152.html
#### Possible fixes ####
* igt@kms_atomic_transition@modeset-transition:
- shard-bmg: [DMESG-FAIL][191] ([Intel XE#3428]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@kms_atomic_transition@modeset-transition.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_atomic_transition@modeset-transition.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: [DMESG-WARN][193] ([Intel XE#3428]) -> [PASS][194] +11 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_crc@cursor-onscreen-64x64:
- shard-bmg: [SKIP][195] ([Intel XE#2320]) -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-64x64.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-64x64.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][197] ([Intel XE#2291]) -> [PASS][198] +4 other tests pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][199] ([Intel XE#4294]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-hdmi-a2-dp2:
- shard-dg2-set2: [FAIL][201] ([Intel XE#886]) -> [PASS][202] +3 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-432/igt@kms_flip@2x-blocking-wf_vblank@ab-hdmi-a2-dp2.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-432/igt@kms_flip@2x-blocking-wf_vblank@ab-hdmi-a2-dp2.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][203] ([Intel XE#3321]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-bmg: [SKIP][205] ([Intel XE#2316]) -> [PASS][206] +5 other tests pass
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-4/igt@kms_flip@2x-plain-flip-interruptible.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-7/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][207] ([Intel XE#301]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:
- shard-dg2-set2: [FAIL][209] ([Intel XE#301]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][211] ([Intel XE#2571]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_vblank@accuracy-idle@pipe-d-dp-2:
- shard-bmg: [FAIL][213] -> [PASS][214] +3 other tests pass
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@kms_vblank@accuracy-idle@pipe-d-dp-2.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-2/igt@kms_vblank@accuracy-idle@pipe-d-dp-2.html
* igt@testdisplay:
- shard-dg2-set2: [ABORT][215] ([Intel XE#2705]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-464/igt@testdisplay.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@testdisplay.html
* igt@xe_evict@evict-large-external-cm:
- shard-bmg: [DMESG-WARN][217] ([Intel XE#1473] / [Intel XE#3428]) -> [PASS][218] +1 other test pass
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@xe_evict@evict-large-external-cm.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-8/igt@xe_evict@evict-large-external-cm.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-dg2-set2: [SKIP][219] ([Intel XE#1392]) -> [PASS][220] +7 other tests pass
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: [FAIL][221] ([Intel XE#1999]) -> [PASS][222] +2 other tests pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_pm@s4-exec-after:
- shard-lnl: [ABORT][223] ([Intel XE#1794]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-lnl-2/igt@xe_pm@s4-exec-after.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-lnl-7/igt@xe_pm@s4-exec-after.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][225] ([Intel XE#1124]) -> [SKIP][226] ([Intel XE#2351] / [Intel XE#4208])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg2-set2: [SKIP][227] ([Intel XE#1124]) -> [SKIP][228] ([Intel XE#4208])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-435/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [SKIP][229] ([Intel XE#367]) -> [SKIP][230] ([Intel XE#4208] / [i915#2575])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][231] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][232] ([Intel XE#4208])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-dg2-set2: [SKIP][233] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][234] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][235] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][236] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][237] ([Intel XE#2705] / [Intel XE#4212]) -> [INCOMPLETE][238] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: [SKIP][239] ([Intel XE#373]) -> [SKIP][240] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-433/igt@kms_chamelium_edid@hdmi-mode-timings.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][241] ([Intel XE#2341]) -> [FAIL][242] ([Intel XE#1178])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-3/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][243] ([Intel XE#1178]) -> [SKIP][244] ([Intel XE#2341])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-2/igt@kms_content_protection@legacy.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][245] ([Intel XE#308]) -> [SKIP][246] ([Intel XE#4208] / [i915#2575])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_dp_aux_dev:
- shard-bmg: [DMESG-WARN][247] ([Intel XE#3428]) -> [SKIP][248] ([Intel XE#3009])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@kms_dp_aux_dev.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_dp_aux_dev.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][249] ([Intel XE#1137]) -> [SKIP][250] ([Intel XE#4208] / [i915#2575])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-464/igt@kms_feature_discovery@dp-mst.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [DMESG-WARN][251] ([Intel XE#3428]) -> [SKIP][252] ([Intel XE#2316])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][253] ([Intel XE#455]) -> [SKIP][254] ([Intel XE#4208])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][255] ([Intel XE#2311]) -> [SKIP][256] ([Intel XE#2312]) +18 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][257] ([Intel XE#2312]) -> [SKIP][258] ([Intel XE#2311]) +13 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: [SKIP][259] ([Intel XE#651]) -> [SKIP][260] ([Intel XE#4208]) +4 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][261] ([Intel XE#2312]) -> [SKIP][262] ([Intel XE#4141]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][263] ([Intel XE#4141]) -> [SKIP][264] ([Intel XE#2312]) +11 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][265] ([Intel XE#651]) -> [SKIP][266] ([Intel XE#2351] / [Intel XE#4208])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][267] ([Intel XE#653]) -> [SKIP][268] ([Intel XE#4208]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][269] ([Intel XE#2312]) -> [SKIP][270] ([Intel XE#2313]) +13 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][271] ([Intel XE#653]) -> [SKIP][272] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][273] ([Intel XE#2313]) -> [SKIP][274] ([Intel XE#2312]) +18 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][275] ([Intel XE#455]) -> [SKIP][276] ([Intel XE#4208] / [i915#2575])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [DMESG-WARN][277] ([Intel XE#3428]) -> [SKIP][278] ([Intel XE#4596])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][279] ([Intel XE#2493]) -> [SKIP][280] ([Intel XE#4596])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-y.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: [SKIP][281] ([Intel XE#870]) -> [SKIP][282] ([Intel XE#4208])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-433/igt@kms_pm_backlight@basic-brightness.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][283] ([Intel XE#1489]) -> [SKIP][284] ([Intel XE#4208]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-433/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-basic:
- shard-dg2-set2: [SKIP][285] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][286] ([Intel XE#4208])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-464/igt@kms_psr@fbc-psr-basic.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_psr@fbc-psr-basic.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][287] ([Intel XE#3414]) -> [SKIP][288] ([Intel XE#4208] / [i915#2575])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: [SKIP][289] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][290] ([Intel XE#4208])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_exec_fault_mode@many-rebind-imm:
- shard-dg2-set2: [SKIP][291] ([Intel XE#288]) -> [SKIP][292] ([Intel XE#4208]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-433/igt@xe_exec_fault_mode@many-rebind-imm.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_exec_fault_mode@many-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][293] ([Intel XE#2360]) -> [SKIP][294] ([Intel XE#4208])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy:
- shard-dg2-set2: [SKIP][295] ([Intel XE#4837]) -> [SKIP][296] ([Intel XE#4208]) +3 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-432/igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][297] ([Intel XE#512]) -> [SKIP][298] ([Intel XE#4208])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-434/igt@xe_mmap@small-bar.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_mmap@small-bar.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][299] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][300] ([Intel XE#4208]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-435/igt@xe_oa@whitelisted-registers-userspace-config.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][301] ([Intel XE#2284]) -> [SKIP][302] ([Intel XE#4208])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-432/igt@xe_pm@d3cold-mocs.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: [SKIP][303] ([Intel XE#579]) -> [SKIP][304] ([Intel XE#4208])
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-435/igt@xe_pm@vram-d3cold-threshold.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: [SKIP][305] ([Intel XE#944]) -> [SKIP][306] ([Intel XE#4208])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8336/shard-dg2-464/igt@xe_query@multigpu-query-uc-fw-version-huc.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/shard-dg2-464/igt@xe_query@multigpu-query-uc-fw-version-huc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4735]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4735
[Intel XE#4801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4801
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4817]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4817
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8336 -> IGTPW_13035
IGTPW_13035: 26be598b3a5d51e641d202b0004628d279ae3992 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8336: 8336
xe-2994-6176f71822602f52bc4327965090275c5570ed0d: 6176f71822602f52bc4327965090275c5570ed0d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13035/index.html
[-- Attachment #2: Type: text/html, Size: 126531 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v5 1/2] tests/kms_async_flips: Split subtest to handle linear buffers separately
2025-04-24 7:45 ` [PATCH i-g-t v5 1/2] tests/kms_async_flips: Split subtest to handle linear buffers separately Santhosh Reddy Guddati
@ 2025-04-28 4:45 ` Karthik B S
0 siblings, 0 replies; 8+ messages in thread
From: Karthik B S @ 2025-04-28 4:45 UTC (permalink / raw)
To: Santhosh Reddy Guddati, igt-dev; +Cc: arun.r.murthy, chaitanya.kumar.borah
On 4/24/2025 1:15 PM, Santhosh Reddy Guddati wrote:
> As linear buffers are considered corner cases, split the existing subtests
> run_with_modifiers to handle as a separate subtest.
>
> V2:
> Rename existing subtest to tiled modifier and make the tiled subtest
> intel specific, fix linear modifier subtest to avoid skip on non intel
> platforms (Karthik).
>
> V3:
> Refactor run_test for linear modifier and update run_test_with_modifiers
> to skip for linear modifier only (Karthik).
>
> V4:
> Set allow_fail based on linear modifier and intel device.
>
> V5:
> Fix build
>
> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
> ---
> tests/kms_async_flips.c | 65 +++++++++++++++++++++++++++++++----------
> 1 file changed, 49 insertions(+), 16 deletions(-)
>
> diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
> index 031417ed8..d8708d803 100644
> --- a/tests/kms_async_flips.c
> +++ b/tests/kms_async_flips.c
> @@ -45,7 +45,7 @@
> * Description: Verify the async flip functionality and the fps during async flips
> * Alternate between sync and async flips
> *
> - * SUBTEST: async-flip-with-page-flip-events
> + * SUBTEST: async-flip-with-page-flip-events-tiled
> * Description: Verify the async flip functionality and the fps during async flips
> * Wait for page flip events in between successive asynchronous flips
> *
> @@ -66,7 +66,7 @@
> * SUBTEST: alternate-sync-async-flip-atomic
> * Description: Verify the async flip functionality and the fps during async flips using atomic path
> *
> - * SUBTEST: async-flip-with-page-flip-events-atomic
> + * SUBTEST: async-flip-with-page-flip-events-tiled-atomic
> * Description: Wait for page flip events in between successive asynchronous flips using atomic path
> *
> * SUBTEST: test-time-stamp-atomic
> @@ -88,6 +88,14 @@
> *
> * SUBTEST: overlay-atomic
> * Description: Verify overlay planes with async flips in atomic API
> + *
> + * SUBTEST: async-flip-with-page-flip-events-linear
> + * Description: Verify the async flip functionality and the fps during async flips
> + * with linear modifier
> + *
> + * SUBTEST: async-flip-with-page-flip-events-linear-atomic
> + * Description: Verify the async flip functionality and the fps during async flips
> + * with linear modifier in Atomic API
> */
>
> #define CURSOR_POS 128
> @@ -128,6 +136,7 @@ typedef struct {
> struct buf_ops *bops;
> bool atomic_path;
> bool overlay_path;
> + bool linear_modifier;
> } data_t;
>
> static void flip_handler(int fd_, unsigned int sequence, unsigned int tv_sec,
> @@ -266,6 +275,7 @@ static void test_init_ops(data_t *data)
> data->alternate_sync_async = false;
> data->atomic_path = false;
> data->overlay_path = false;
> + data->linear_modifier = false;
> }
>
> static void test_init_fbs(data_t *data)
> @@ -768,8 +778,14 @@ static void run_test(data_t *data, void (*test)(data_t *))
> continue;
>
> test_init(data);
> - data->allow_fail = false;
> - data->modifier = default_modifier(data);
> +
> + if (data->linear_modifier && is_intel_device(data->drm_fd))
> + data->allow_fail = true;
> + else
> + data->allow_fail = false;
> +
> + data->modifier = data->linear_modifier ? DRM_FORMAT_MOD_LINEAR : default_modifier(data);
> +
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name) {
> /*
> * FIXME: joiner+async flip is busted currently in KMD.
> @@ -792,15 +808,20 @@ static void run_test_with_modifiers(data_t *data, void (*test)(data_t *))
> test_init(data);
>
> for (int i = 0; i < data->plane->format_mod_count; i++) {
> + uint64_t modifier = data->plane->modifiers[i];
> +
> if (data->plane->formats[i] != DRM_FORMAT_XRGB8888)
> continue;
>
> + if (modifier == DRM_FORMAT_MOD_LINEAR)
> + continue;
> +
> data->allow_fail = true;
> - data->modifier = data->plane->modifiers[i];
> + data->modifier = modifier;
>
> igt_dynamic_f("pipe-%s-%s-%s", kmstest_pipe_name(data->pipe),
> data->output->name,
> - igt_fb_modifier_name(data->modifier)) {
> + igt_fb_modifier_name(modifier)) {
> /*
> * FIXME: joiner+async flip is busted currently in KMD.
> * Remove this check once the issues are fixed in KMD.
> @@ -844,23 +865,35 @@ igt_main
> require_monotonic_timestamp(data.drm_fd);
>
> igt_describe("Wait for page flip events in between successive asynchronous flips");
> - igt_subtest_with_dynamic("async-flip-with-page-flip-events") {
> + igt_subtest_with_dynamic("async-flip-with-page-flip-events-tiled") {
> test_init_ops(&data);
> - if (is_intel_device(data.drm_fd))
> - run_test_with_modifiers(&data, test_async_flip);
> - else
> - run_test(&data, test_async_flip);
> + igt_require(is_intel_device(data.drm_fd));
> + run_test_with_modifiers(&data, test_async_flip);
> }
>
> igt_describe("Wait for page flip events in between successive "
> "asynchronous flips using atomic path");
> - igt_subtest_with_dynamic("async-flip-with-page-flip-events-atomic") {
> + igt_subtest_with_dynamic("async-flip-with-page-flip-events-tiled-atomic") {
> test_init_ops(&data);
> data.atomic_path = true;
> - if (is_intel_device(data.drm_fd))
> - run_test_with_modifiers(&data, test_async_flip);
> - else
> - run_test(&data, test_async_flip);
> + igt_require(is_intel_device(data.drm_fd));
> + run_test_with_modifiers(&data, test_async_flip);
> + }
> +
> + igt_describe("Wait for page flip events in between successive asynchronous "
> + "flips with linear modifiers");
> + igt_subtest_with_dynamic("async-flip-with-page-flip-events-linear") {
> + test_init_ops(&data);
> + data.linear_modifier = true;
> + run_test(&data, test_async_flip);
> + }
> +
> + igt_describe("Wait for page flip events in between successive asynchronous "
> + "flips using atomic path with linear modifiers");
> + igt_subtest_with_dynamic("async-flip-with-page-flip-events-linear-atomic") {
> + test_init_ops(&data);
> + data.linear_modifier = true;
> + run_test(&data, test_async_flip);
> }
>
> igt_describe("Alternate between sync and async flips");
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-04-28 4:46 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-24 7:45 [PATCH i-g-t v5 0/2] Async flips with tiled modifiers Santhosh Reddy Guddati
2025-04-24 7:45 ` [PATCH i-g-t v5 1/2] tests/kms_async_flips: Split subtest to handle linear buffers separately Santhosh Reddy Guddati
2025-04-28 4:45 ` Karthik B S
2025-04-24 7:45 ` [PATCH i-g-t v5 2/2] tests/kms_async_flips: Use tiling modifiers Santhosh Reddy Guddati
2025-04-24 15:54 ` ✓ i915.CI.BAT: success for Async flips with tiled modifiers Patchwork
2025-04-24 16:15 ` ✓ Xe.CI.BAT: " Patchwork
2025-04-25 0:52 ` ✓ i915.CI.Full: " Patchwork
2025-04-25 11:59 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox