* [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices
@ 2022-09-03 17:48 Alex Hung
2022-09-03 17:48 ` [igt-dev] [PATCH 2/2][V4] tests/kms_universal_plane: Skip offscreen test for universal API Alex Hung
` (8 more replies)
0 siblings, 9 replies; 12+ messages in thread
From: Alex Hung @ 2022-09-03 17:48 UTC (permalink / raw)
To: igt-dev; +Cc: markyacoub
This subtest runs on non-i915 devices, and let's make it generic by
removing igt_require_intel and renaming it.
Signed-off-by: Alex Hung <alex.hung@amd.com>
Reviewed-by: Mark Yacoub <markyacoub@chromium.org>
---
tests/kms_universal_plane.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
index 3cb6d704..9eab1a57 100644
--- a/tests/kms_universal_plane.c
+++ b/tests/kms_universal_plane.c
@@ -699,15 +699,14 @@ gen9_test_fini(gen9_test_t *test, igt_output_t *output)
* windowing)
*/
static void
-gen9_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
+pageflip_win_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
{
gen9_test_t test = { .data = data };
igt_plane_t *primary;
int ret = 0;
- igt_require_intel(data->drm_fd);
- igt_skip_on(data->display_ver < 9);
+ igt_skip_on(is_i915_device(data->drm_fd) && data->display_ver < 9);
igt_require_pipe(&data->display, pipe);
igt_output_set_pipe(output, pipe);
@@ -787,10 +786,10 @@ run_tests_for_pipe(data_t *data, enum pipe pipe)
cursor_leak_test_pipe(data, pipe, output);
igt_describe("Check if pageflip succeeds in windowed setting");
- igt_subtest_f("universal-plane-gen9-features-pipe-%s",
+ igt_subtest_f("universal-plane-pageflip-windowed-pipe-%s",
kmstest_pipe_name(pipe))
for_each_valid_output_on_pipe(&data->display, pipe, output)
- gen9_test_pipe(data, pipe, output);
+ pageflip_win_test_pipe(data, pipe, output);
}
static data_t data;
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH 2/2][V4] tests/kms_universal_plane: Skip offscreen test for universal API
2022-09-03 17:48 [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Alex Hung
@ 2022-09-03 17:48 ` Alex Hung
2022-09-06 13:50 ` Mark Yacoub
2022-11-11 10:33 ` Ville Syrjälä
2022-09-03 18:34 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Patchwork
` (7 subsequent siblings)
8 siblings, 2 replies; 12+ messages in thread
From: Alex Hung @ 2022-09-03 17:48 UTC (permalink / raw)
To: igt-dev; +Cc: markyacoub
amdgpu driver intentionally rejects plane outside of the screen and thus
this test is skipped on AMD HW. See more details in kernel commits
40d916a2602c and 4abdb72bd8576 which are summarized as below:
"Reject this condition (too small viewport size) at validation time.
This gives the calling level a chance to handle this gracefully and
avoid inconsistent behaviors."
Signed-off-by: Alex Hung <alex.hung@amd.com>
---
tests/kms_universal_plane.c | 33 ++++++++++++++++++++-------------
1 file changed, 20 insertions(+), 13 deletions(-)
diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
index 9eab1a57..432f56ba 100644
--- a/tests/kms_universal_plane.c
+++ b/tests/kms_universal_plane.c
@@ -241,17 +241,22 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
igt_plane_set_fb(sprite, &test.red_fb);
igt_display_commit2(display, COMMIT_LEGACY);
- /* Step 14: Universal API, set primary completely offscreen (CRC 9) */
- igt_assert(drmModeSetPlane(data->drm_fd, primary->drm_plane->plane_id,
- output->config.crtc->crtc_id,
- test.blue_fb.fb_id, 0,
- 9000, 9000,
- test.mode->hdisplay,
- test.mode->vdisplay,
- IGT_FIXED(0,0), IGT_FIXED(0,0),
- IGT_FIXED(test.mode->hdisplay,0),
- IGT_FIXED(test.mode->vdisplay,0)) == 0);
- igt_pipe_crc_collect_crc(test.pipe_crc, &test.crc_9);
+ /*
+ * Step 14: Universal API, set primary completely offscreen (CRC 9).
+ * Skip on amdgpu which rejects offscreen planes.
+ */
+ if (!is_amdgpu_device(data->drm_fd)) {
+ igt_assert(drmModeSetPlane(data->drm_fd, primary->drm_plane->plane_id,
+ output->config.crtc->crtc_id,
+ test.blue_fb.fb_id, 0,
+ 9000, 9000,
+ test.mode->hdisplay,
+ test.mode->vdisplay,
+ IGT_FIXED(0,0), IGT_FIXED(0,0),
+ IGT_FIXED(test.mode->hdisplay,0),
+ IGT_FIXED(test.mode->vdisplay,0)) == 0);
+ igt_pipe_crc_collect_crc(test.pipe_crc, &test.crc_9);
+ }
/*
* Step 15: Explicitly disable primary after it's already been
@@ -289,9 +294,11 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
/*
* We should be able to move the primary plane completely offscreen
- * and have it disable successfully.
+ * and have it disable successfully. Skip on amdgpu since crc_9 was
+ * skipped with offscreen planes previously.
*/
- igt_assert_crc_equal(&test.crc_5, &test.crc_9);
+ if (!is_amdgpu_device(data->drm_fd))
+ igt_assert_crc_equal(&test.crc_5, &test.crc_9);
/*
* We should be able to explicitly disable an already
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices
2022-09-03 17:48 [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Alex Hung
2022-09-03 17:48 ` [igt-dev] [PATCH 2/2][V4] tests/kms_universal_plane: Skip offscreen test for universal API Alex Hung
@ 2022-09-03 18:34 ` Patchwork
2022-09-03 22:50 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2) Patchwork
` (6 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2022-09-03 18:34 UTC (permalink / raw)
To: Alex Hung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6427 bytes --]
== Series Details ==
Series: series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices
URL : https://patchwork.freedesktop.org/series/108096/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_12068 -> IGTPW_7730
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_7730 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7730, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7730/index.html
Participating hosts (25 -> 32)
------------------------------
Additional (8): bat-dg2-8 bat-adlm-1 bat-dg2-9 bat-adlp-6 bat-adln-1 bat-jsl-3 bat-rpls-1 bat-dg2-11
Missing (1): fi-bdw-samus
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7730:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@module-reload:
- fi-bdw-5557u: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/fi-bdw-5557u/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7730/fi-bdw-5557u/igt@i915_pm_rpm@module-reload.html
Known issues
------------
Here are the changes found in IGTPW_7730 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gem:
- fi-pnv-d510: [PASS][3] -> [DMESG-FAIL][4] ([i915#4528])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/fi-pnv-d510/igt@i915_selftest@live@gem.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7730/fi-pnv-d510/igt@i915_selftest@live@gem.html
* igt@runner@aborted:
- fi-pnv-d510: NOTRUN -> [FAIL][5] ([fdo#109271] / [i915#2403] / [i915#4312])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7730/fi-pnv-d510/igt@runner@aborted.html
- fi-bdw-5557u: NOTRUN -> [FAIL][6] ([i915#4312])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7730/fi-bdw-5557u/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3003]: https://gitlab.freedesktop.org/drm/intel/issues/3003
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6641]: https://gitlab.freedesktop.org/drm/intel/issues/6641
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6668]: https://gitlab.freedesktop.org/drm/intel/issues/6668
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6642 -> IGTPW_7730
CI-20190529: 20190529
CI_DRM_12068: f2c3a05d33693ad51996fa7d12d3b2d4b0f372eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7730: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7730/index.html
IGT_6642: c018ce1d1ab8e570f665cf5d58c9802a44d66cc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-e
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-f
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-a
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-b
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-c
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-d
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-e
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7730/index.html
[-- Attachment #2: Type: text/html, Size: 4804 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
2022-09-03 17:48 [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Alex Hung
2022-09-03 17:48 ` [igt-dev] [PATCH 2/2][V4] tests/kms_universal_plane: Skip offscreen test for universal API Alex Hung
2022-09-03 18:34 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Patchwork
@ 2022-09-03 22:50 ` Patchwork
2022-09-04 8:06 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (5 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2022-09-03 22:50 UTC (permalink / raw)
To: Alex Hung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6328 bytes --]
== Series Details ==
Series: series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
URL : https://patchwork.freedesktop.org/series/108096/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_12068 -> IGTPW_7731
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_7731 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7731, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
Participating hosts (25 -> 30)
------------------------------
Additional (7): bat-adlm-1 bat-dg2-9 bat-adlp-6 bat-adln-1 bat-jsl-3 bat-rpls-1 bat-dg2-11
Missing (2): fi-rkl-11600 fi-bdw-samus
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7731:
### IGT changes ###
#### Possible regressions ####
* igt@i915_suspend@basic-s3-without-i915:
- fi-bdw-5557u: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/fi-bdw-5557u/igt@i915_suspend@basic-s3-without-i915.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/fi-bdw-5557u/igt@i915_suspend@basic-s3-without-i915.html
Known issues
------------
Here are the changes found in IGTPW_7731 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@requests:
- fi-pnv-d510: [PASS][3] -> [DMESG-FAIL][4] ([i915#4528])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/fi-pnv-d510/igt@i915_selftest@live@requests.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/fi-pnv-d510/igt@i915_selftest@live@requests.html
* igt@runner@aborted:
- fi-pnv-d510: NOTRUN -> [FAIL][5] ([fdo#109271] / [i915#2403] / [i915#4312])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/fi-pnv-d510/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#3003]: https://gitlab.freedesktop.org/drm/intel/issues/3003
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6641]: https://gitlab.freedesktop.org/drm/intel/issues/6641
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6642 -> IGTPW_7731
CI-20190529: 20190529
CI_DRM_12068: f2c3a05d33693ad51996fa7d12d3b2d4b0f372eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7731: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
IGT_6642: c018ce1d1ab8e570f665cf5d58c9802a44d66cc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-e
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-f
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-a
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-b
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-c
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-d
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-e
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
[-- Attachment #2: Type: text/html, Size: 4615 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
2022-09-03 17:48 [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Alex Hung
` (2 preceding siblings ...)
2022-09-03 22:50 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2) Patchwork
@ 2022-09-04 8:06 ` Patchwork
2022-09-04 9:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2022-09-04 8:06 UTC (permalink / raw)
To: Alex Hung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5945 bytes --]
== Series Details ==
Series: series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
URL : https://patchwork.freedesktop.org/series/108096/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12068 -> IGTPW_7731
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
Participating hosts (25 -> 30)
------------------------------
Additional (7): bat-adlm-1 bat-dg2-9 bat-adlp-6 bat-adln-1 bat-jsl-3 bat-rpls-1 bat-dg2-11
Missing (2): fi-rkl-11600 fi-bdw-samus
Known issues
------------
Here are the changes found in IGTPW_7731 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@requests:
- fi-pnv-d510: [PASS][1] -> [DMESG-FAIL][2] ([i915#4528])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/fi-pnv-d510/igt@i915_selftest@live@requests.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/fi-pnv-d510/igt@i915_selftest@live@requests.html
* igt@i915_suspend@basic-s3-without-i915:
- fi-bdw-5557u: [PASS][3] -> [INCOMPLETE][4] ([i915#6712])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/fi-bdw-5557u/igt@i915_suspend@basic-s3-without-i915.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/fi-bdw-5557u/igt@i915_suspend@basic-s3-without-i915.html
* igt@runner@aborted:
- fi-pnv-d510: NOTRUN -> [FAIL][5] ([fdo#109271] / [i915#2403] / [i915#4312])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/fi-pnv-d510/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#3003]: https://gitlab.freedesktop.org/drm/intel/issues/3003
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6641]: https://gitlab.freedesktop.org/drm/intel/issues/6641
[i915#6712]: https://gitlab.freedesktop.org/drm/intel/issues/6712
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6642 -> IGTPW_7731
CI-20190529: 20190529
CI_DRM_12068: f2c3a05d33693ad51996fa7d12d3b2d4b0f372eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7731: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
IGT_6642: c018ce1d1ab8e570f665cf5d58c9802a44d66cc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-e
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-f
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-a
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-b
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-c
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-d
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-e
-igt@kms_universal_plane@universal-plane-gen9-features-pipe-f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
[-- Attachment #2: Type: text/html, Size: 4220 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
2022-09-03 17:48 [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Alex Hung
` (3 preceding siblings ...)
2022-09-04 8:06 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2022-09-04 9:10 ` Patchwork
2022-09-05 5:35 ` Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2022-09-04 9:10 UTC (permalink / raw)
To: Alex Hung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 49507 bytes --]
== Series Details ==
Series: series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
URL : https://patchwork.freedesktop.org/series/108096/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_12068_full -> IGTPW_7731_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_7731_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7731_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
Participating hosts (13 -> 9)
------------------------------
Missing (4): pig-skl-6260u pig-kbl-iris shard-dg1 pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7731_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-glk: [PASS][1] -> [TIMEOUT][2] +3 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk6/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@syncobj_timeline@wait-for-submit-snapshot:
- shard-glk: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@syncobj_timeline@wait-for-submit-snapshot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk1/igt@syncobj_timeline@wait-for-submit-snapshot.html
#### Warnings ####
* igt@kms_vrr@flipline:
- shard-glk: [SKIP][5] ([fdo#109271]) -> [TIMEOUT][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk1/igt@kms_vrr@flipline.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@kms_vrr@flipline.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_cursor_crc@cursor-onscreen-32x32}:
- {shard-rkl}: NOTRUN -> [SKIP][7] +4 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* {igt@kms_cursor_crc@cursor-onscreen-max-size}:
- {shard-rkl}: [SKIP][8] ([i915#4098]) -> [SKIP][9] +2 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* {igt@kms_cursor_crc@cursor-rapid-movement-512x512}:
- {shard-tglu}: NOTRUN -> [SKIP][10] +2 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
New tests
---------
New tests have been introduced between CI_DRM_12068_full and IGTPW_7731_full:
### New IGT tests (4) ###
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.0, 1.17] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.0, 1.81] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c:
- Statuses : 5 pass(s) 2 skip(s)
- Exec time: [0.0, 1.73] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 1.66] s
Known issues
------------
Here are the changes found in IGTPW_7731_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ccs@block-copy-uncompressed:
- shard-iclb: NOTRUN -> [SKIP][11] ([i915#5327])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@gem_ccs@block-copy-uncompressed.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglb: NOTRUN -> [FAIL][12] ([i915#6268])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#1099]) +1 similar issue
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_eio@in-flight-contexts-immediate:
- shard-tglb: [PASS][14] -> [TIMEOUT][15] ([i915#3063])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html
* igt@gem_eio@reset-stress:
- shard-tglb: [PASS][16] -> [FAIL][17] ([i915#5784]) +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb3/igt@gem_eio@reset-stress.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-iclb: [PASS][18] -> [SKIP][19] ([i915#4525]) +1 similar issue
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][20] ([i915#2842])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none@vcs1:
- shard-iclb: NOTRUN -> [FAIL][21] ([i915#2842])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][22] -> [FAIL][23] ([i915#2842])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-glk: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4613])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk8/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-tglb: NOTRUN -> [SKIP][25] ([i915#4270]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-iclb: NOTRUN -> [SKIP][26] ([i915#4270])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglb: NOTRUN -> [SKIP][27] ([i915#3297]) +2 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-iclb: NOTRUN -> [SKIP][28] ([i915#3297]) +1 similar issue
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-apl: [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@gem_workarounds@suspend-resume.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@gem_workarounds@suspend-resume.html
* igt@gen3_render_tiledy_blits:
- shard-iclb: NOTRUN -> [SKIP][31] ([fdo#109289]) +2 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@gen3_render_tiledy_blits.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglb: NOTRUN -> [SKIP][32] ([fdo#109289]) +3 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@kms_atomic@atomic_plane_damage:
- shard-iclb: NOTRUN -> [SKIP][33] ([i915#4765])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_atomic@atomic_plane_damage.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-iclb: NOTRUN -> [SKIP][34] ([i915#5286]) +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][35] ([i915#5286]) +2 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-tglb: NOTRUN -> [SKIP][36] ([fdo#111615])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][37] ([fdo#111615] / [i915#3689]) +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886]) +3 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109278] / [i915#3886]) +2 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
- shard-tglb: NOTRUN -> [SKIP][40] ([i915#3689] / [i915#6095])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +3 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl3/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
- shard-tglb: NOTRUN -> [SKIP][42] ([i915#3689] / [i915#3886])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][43] ([i915#3689]) +3 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
- shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109278]) +10 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html
* igt@kms_chamelium@common-hpd-after-suspend:
- shard-snb: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +4 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb7/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_chamelium@vga-frame-dump:
- shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +4 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@kms_chamelium@vga-frame-dump.html
* igt@kms_color_chamelium@ctm-max:
- shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@kms_color_chamelium@ctm-max.html
- shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +2 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk3/igt@kms_color_chamelium@ctm-max.html
- shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109284] / [fdo#111827]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_color_chamelium@ctm-max.html
* igt@kms_content_protection@legacy:
- shard-tglb: NOTRUN -> [SKIP][50] ([i915#1063]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109300] / [fdo#111066])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-apl: NOTRUN -> [FAIL][52] ([i915#2105])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-tglb: NOTRUN -> [SKIP][53] ([fdo#109274] / [fdo#111825]) +7 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip@atomic:
- shard-apl: [PASS][54] -> [DMESG-WARN][55] ([i915#62]) +22 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl7/igt@kms_cursor_legacy@cursor-vs-flip@atomic.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_cursor_legacy@cursor-vs-flip@atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-glk: [PASS][56] -> [FAIL][57] ([i915#2346]) +1 similar issue
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-tglb: NOTRUN -> [SKIP][58] ([i915#426])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern.html
- shard-iclb: NOTRUN -> [SKIP][59] ([i915#426])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:
- shard-tglb: NOTRUN -> [SKIP][60] ([i915#5287])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
- shard-iclb: NOTRUN -> [SKIP][61] ([i915#5287])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [FAIL][62] ([i915#4767])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109274]) +2 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb5/igt@kms_flip@2x-dpms-vs-vblank-race.html
- shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109274] / [fdo#111825] / [i915#3637])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
- shard-iclb: [PASS][65] -> [DMESG-WARN][66] ([i915#2867])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb5/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-iclb: NOTRUN -> [SKIP][67] ([i915#2672]) +4 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
- shard-tglb: NOTRUN -> [SKIP][68] ([i915#2672]) +1 similar issue
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][69] ([i915#3555]) +2 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][70] ([i915#2672] / [i915#3555])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109280]) +5 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglb: NOTRUN -> [SKIP][72] ([i915#6497]) +3 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-tglb: NOTRUN -> [SKIP][73] ([fdo#109280] / [fdo#111825]) +10 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][74] ([fdo#109271]) +123 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271]) +81 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglb: NOTRUN -> [SKIP][76] ([i915#3555])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][77] ([i915#265])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
- shard-apl: NOTRUN -> [FAIL][78] ([fdo#108145] / [i915#265])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][79] ([fdo#108145] / [i915#265]) +1 similar issue
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1:
- shard-iclb: NOTRUN -> [SKIP][80] ([i915#5176]) +2 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1:
- shard-tglb: NOTRUN -> [SKIP][81] ([i915#5176]) +3 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#658])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-iclb: [PASS][83] -> [SKIP][84] ([fdo#109642] / [fdo#111068] / [i915#658])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_basic:
- shard-tglb: NOTRUN -> [FAIL][85] ([i915#132] / [i915#3467]) +1 similar issue
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_psr@psr2_basic.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: [PASS][86] -> [SKIP][87] ([fdo#109441]) +2 similar issues
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_psr@psr2_sprite_blt:
- shard-iclb: NOTRUN -> [SKIP][88] ([fdo#109441])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglb: NOTRUN -> [SKIP][89] ([fdo#111615] / [i915#5289]) +1 similar issue
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][90] ([i915#5465]) +1 similar issue
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html
* {igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][91] ([i915#4070] / [i915#4098])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-2/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html
* {igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][92] ([i915#4098])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d.html
* igt@kms_vblank@pipe-a-wait-idle:
- shard-apl: NOTRUN -> [DMESG-WARN][93] ([i915#62])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_vblank@pipe-a-wait-idle.html
* igt@kms_vblank@pipe-d-wait-busy-hang:
- shard-glk: NOTRUN -> [SKIP][94] ([fdo#109271]) +87 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_vblank@pipe-d-wait-busy-hang.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2437])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@kms_writeback@writeback-check-output.html
* igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
- shard-iclb: NOTRUN -> [SKIP][96] ([i915#2530])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html
* igt@nouveau_crc@pipe-c-source-outp-inactive:
- shard-tglb: NOTRUN -> [SKIP][97] ([i915#2530]) +1 similar issue
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-inactive.html
* igt@perf@enable-disable:
- shard-glk: [PASS][98] -> [TIMEOUT][99] ([i915#6576])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk9/igt@perf@enable-disable.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@perf@enable-disable.html
* igt@sysfs_clients@fair-0:
- shard-apl: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#2994])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@sysfs_clients@fair-0.html
- shard-tglb: NOTRUN -> [SKIP][101] ([i915#2994])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@sysfs_clients@fair-0.html
- shard-glk: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2994]) +1 similar issue
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk6/igt@sysfs_clients@fair-0.html
- shard-iclb: NOTRUN -> [SKIP][103] ([i915#2994])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@sysfs_clients@fair-0.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [DMESG-WARN][104] ([i915#4528]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-snb2/igt@core_hotunplug@unbind-rebind.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb2/igt@core_hotunplug@unbind-rebind.html
* igt@drm_read@short-buffer-nonblock:
- {shard-rkl}: [SKIP][106] ([i915#4098]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@drm_read@short-buffer-nonblock.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@drm_read@short-buffer-nonblock.html
* igt@gem_ctx_exec@basic-nohangcheck:
- {shard-tglu}: [FAIL][108] ([i915#6268]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@in-flight-10ms:
- shard-tglb: [TIMEOUT][110] ([i915#3063]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb3/igt@gem_eio@in-flight-10ms.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@gem_eio@in-flight-10ms.html
- shard-iclb: [TIMEOUT][112] ([i915#3070]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb3/igt@gem_eio@in-flight-10ms.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@gem_eio@in-flight-10ms.html
* igt@gem_eio@kms:
- shard-tglb: [FAIL][114] ([i915#5784]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb5/igt@gem_eio@kms.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-iclb: [SKIP][116] ([i915#4525]) -> [PASS][117] +1 similar issue
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@gem_exec_balancer@parallel-out-fence.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-glk: [FAIL][118] ([i915#2842]) -> [PASS][119] +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@gem_exec_fair@basic-none@vcs0.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_reloc@basic-concurrent16:
- {shard-rkl}: [SKIP][120] ([i915#3281]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@gem_exec_reloc@basic-concurrent16.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_pwrite_snooped:
- {shard-rkl}: [SKIP][122] ([i915#3282]) -> [PASS][123] +1 similar issue
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@gem_pwrite_snooped.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@gem_pwrite_snooped.html
* igt@i915_hangman@gt-engine-error@bcs0:
- {shard-rkl}: [SKIP][124] ([i915#6258]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_hangman@gt-engine-error@bcs0.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-1/igt@i915_hangman@gt-engine-error@bcs0.html
* igt@i915_pm_backlight@fade_with_dpms:
- {shard-rkl}: [SKIP][126] ([i915#3012]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_pm_backlight@fade_with_dpms.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@i915_pm_backlight@fade_with_dpms.html
* igt@i915_pm_dc@dc6-dpms:
- shard-iclb: [FAIL][128] ([i915#454]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][130] ([fdo#109271]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@cursor:
- {shard-rkl}: [SKIP][132] ([i915#1849]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_pm_rpm@cursor.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@i915_pm_rpm@cursor.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- {shard-rkl}: [SKIP][134] ([i915#1845] / [i915#4098]) -> [PASS][135] +7 similar issues
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-glk: [FAIL][136] ([i915#1888] / [i915#5138]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-iclb: [FAIL][138] ([i915#2346]) -> [PASS][139] +1 similar issue
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled:
- {shard-rkl}: [SKIP][140] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
* igt@kms_fbcon_fbt@psr-suspend:
- {shard-rkl}: [SKIP][142] ([fdo#110189] / [i915#3955]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-apl: [DMESG-WARN][144] ([i915#180]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- {shard-rkl}: [SKIP][146] ([i915#1849] / [i915#4098]) -> [PASS][147] +3 similar issues
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-tglb: [INCOMPLETE][148] ([i915#2411] / [i915#6598]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb2/igt@kms_frontbuffer_tracking@psr-suspend.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
- shard-iclb: [SKIP][150] ([i915#5235]) -> [PASS][151] +2 similar issues
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
* igt@kms_psr@psr2_primary_blt:
- shard-iclb: [SKIP][152] ([fdo#109441]) -> [PASS][153] +2 similar issues
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@kms_psr@psr2_primary_blt.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglb: [SKIP][154] ([i915#5519]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-iclb: [SKIP][156] ([i915#5519]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_universal_plane@universal-plane-pipe-a-sanity:
- {shard-rkl}: [SKIP][158] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-iclb: [WARN][160] ([i915#2684]) -> [FAIL][161] ([i915#2684])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_selftest@live@gt_pm:
- shard-tglb: [INCOMPLETE][162] ([i915#1759]) -> [DMESG-FAIL][163] ([i915#1759])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb7/igt@i915_selftest@live@gt_pm.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@i915_selftest@live@gt_pm.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-apl: [FAIL][164] ([i915#265]) -> [DMESG-FAIL][165] ([i915#62])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-iclb: [SKIP][166] ([fdo#111068] / [i915#658]) -> [SKIP][167] ([i915#2920])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@runner@aborted:
- shard-apl: ([FAIL][168], [FAIL][169], [FAIL][170], [FAIL][171]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) -> ([FAIL][172], [FAIL][173], [FAIL][174], [FAIL][175]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@runner@aborted.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@runner@aborted.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@runner@aborted.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl3/igt@runner@aborted.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@runner@aborted.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@runner@aborted.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@runner@aborted.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4765]: https://gitlab.freedesktop.org/drm/intel/issues/4765
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
[i915#5748]: https://gitlab.freedesktop.org/drm/intel/issues/5748
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6576]: https://gitlab.freedesktop.org/drm/intel/issues/6576
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598
[i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599
[i915#6637]: https://gitlab.freedesktop.org/drm/intel/issues/6637
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6642 -> IGTPW_7731
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12068: f2c3a05d33693ad51996fa7d12d3b2d4b0f372eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7731: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
IGT_6642: c018ce1d1ab8e570f665cf5d58c9802a44d66cc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
[-- Attachment #2: Type: text/html, Size: 55102 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
2022-09-03 17:48 [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Alex Hung
` (4 preceding siblings ...)
2022-09-04 9:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-09-05 5:35 ` Patchwork
2022-09-05 6:18 ` Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2022-09-05 5:35 UTC (permalink / raw)
To: Alex Hung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 55729 bytes --]
== Series Details ==
Series: series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
URL : https://patchwork.freedesktop.org/series/108096/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_12068_full -> IGTPW_7731_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_7731_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7731_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
Participating hosts (13 -> 10)
------------------------------
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7731_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_fence@syncobj-timeline-unused-fence:
- shard-glk: [PASS][1] -> [TIMEOUT][2] +2 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk2/igt@gem_exec_fence@syncobj-timeline-unused-fence.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_fence@syncobj-timeline-unused-fence.html
#### Warnings ####
* igt@kms_vrr@flipline:
- shard-glk: [SKIP][3] ([fdo#109271]) -> [TIMEOUT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk1/igt@kms_vrr@flipline.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@kms_vrr@flipline.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_cursor_crc@cursor-offscreen-max-size}:
- {shard-dg1}: NOTRUN -> [SKIP][5] +3 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* {igt@kms_cursor_crc@cursor-onscreen-32x32}:
- {shard-rkl}: NOTRUN -> [SKIP][6] +4 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* {igt@kms_cursor_crc@cursor-onscreen-max-size}:
- {shard-rkl}: [SKIP][7] ([i915#4098]) -> [SKIP][8] +2 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* {igt@kms_cursor_crc@cursor-rapid-movement-512x512}:
- {shard-tglu}: NOTRUN -> [SKIP][9] +2 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
New tests
---------
New tests have been introduced between CI_DRM_12068_full and IGTPW_7731_full:
### New IGT tests (28) ###
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.51] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.37] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.33] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.37] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.46] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.39] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.36] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.47] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.90] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.85] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.85] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.84] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.40] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.38] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.55] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.46] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 1.17] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 1.81] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c:
- Statuses : 6 pass(s) 2 skip(s)
- Exec time: [0.0, 1.73] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d:
- Statuses : 3 pass(s) 4 skip(s)
- Exec time: [0.0, 1.66] s
Known issues
------------
Here are the changes found in IGTPW_7731_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ccs@block-copy-uncompressed:
- shard-iclb: NOTRUN -> [SKIP][10] ([i915#5327])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@gem_ccs@block-copy-uncompressed.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglb: NOTRUN -> [FAIL][11] ([i915#6268])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_eio@in-flight-contexts-immediate:
- shard-tglb: [PASS][13] -> [TIMEOUT][14] ([i915#3063])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html
* igt@gem_eio@reset-stress:
- shard-tglb: [PASS][15] -> [FAIL][16] ([i915#5784]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb3/igt@gem_eio@reset-stress.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-iclb: [PASS][17] -> [SKIP][18] ([i915#4525]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][19] ([i915#2842])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none@vcs1:
- shard-iclb: NOTRUN -> [FAIL][20] ([i915#2842])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][21] -> [FAIL][22] ([i915#2842])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-glk: [PASS][23] -> [TIMEOUT][24] ([i915#6714])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk6/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-glk: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4613])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk8/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-tglb: NOTRUN -> [SKIP][26] ([i915#4270]) +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-iclb: NOTRUN -> [SKIP][27] ([i915#4270])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglb: NOTRUN -> [SKIP][28] ([i915#3297]) +2 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-iclb: NOTRUN -> [SKIP][29] ([i915#3297]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-apl: [PASS][30] -> [DMESG-WARN][31] ([i915#180]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@gem_workarounds@suspend-resume.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@gem_workarounds@suspend-resume.html
* igt@gen3_render_tiledy_blits:
- shard-iclb: NOTRUN -> [SKIP][32] ([fdo#109289]) +2 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@gen3_render_tiledy_blits.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglb: NOTRUN -> [SKIP][33] ([fdo#109289]) +3 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@kms_atomic@atomic_plane_damage:
- shard-iclb: NOTRUN -> [SKIP][34] ([i915#4765])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_atomic@atomic_plane_damage.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-iclb: NOTRUN -> [SKIP][35] ([i915#5286]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][36] ([i915#5286]) +2 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-tglb: NOTRUN -> [SKIP][37] ([fdo#111615])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][38] ([fdo#111615] / [i915#3689]) +2 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) +3 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][40] ([fdo#109278] / [i915#3886]) +2 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
- shard-tglb: NOTRUN -> [SKIP][41] ([i915#3689] / [i915#6095])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#3886]) +3 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl3/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
- shard-tglb: NOTRUN -> [SKIP][43] ([i915#3689] / [i915#3886])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][44] ([i915#3689]) +3 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
- shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109278]) +10 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html
* igt@kms_chamelium@common-hpd-after-suspend:
- shard-snb: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +4 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb7/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_chamelium@vga-frame-dump:
- shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +4 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@kms_chamelium@vga-frame-dump.html
* igt@kms_color_chamelium@ctm-max:
- shard-tglb: NOTRUN -> [SKIP][48] ([fdo#109284] / [fdo#111827]) +3 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@kms_color_chamelium@ctm-max.html
- shard-glk: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +2 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk3/igt@kms_color_chamelium@ctm-max.html
- shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_color_chamelium@ctm-max.html
* igt@kms_content_protection@legacy:
- shard-tglb: NOTRUN -> [SKIP][51] ([i915#1063]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109300] / [fdo#111066])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-apl: NOTRUN -> [FAIL][53] ([i915#2105])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-tglb: NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#111825]) +7 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip@atomic:
- shard-apl: [PASS][55] -> [DMESG-WARN][56] ([i915#62]) +22 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl7/igt@kms_cursor_legacy@cursor-vs-flip@atomic.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_cursor_legacy@cursor-vs-flip@atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-glk: [PASS][57] -> [FAIL][58] ([i915#2346]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-tglb: NOTRUN -> [SKIP][59] ([i915#426])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern.html
- shard-iclb: NOTRUN -> [SKIP][60] ([i915#426])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:
- shard-tglb: NOTRUN -> [SKIP][61] ([i915#5287])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
- shard-iclb: NOTRUN -> [SKIP][62] ([i915#5287])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [FAIL][63] ([i915#4767])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109274]) +2 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb5/igt@kms_flip@2x-dpms-vs-vblank-race.html
- shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109274] / [fdo#111825] / [i915#3637])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
- shard-iclb: [PASS][66] -> [DMESG-WARN][67] ([i915#2867])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb5/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-iclb: NOTRUN -> [SKIP][68] ([i915#2672]) +4 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
- shard-tglb: NOTRUN -> [SKIP][69] ([i915#2672]) +1 similar issue
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][70] ([i915#3555]) +2 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][71] ([i915#2672] / [i915#3555])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109280]) +5 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglb: NOTRUN -> [SKIP][73] ([i915#6497]) +3 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-tglb: NOTRUN -> [SKIP][74] ([fdo#109280] / [fdo#111825]) +10 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][75] ([fdo#109271]) +123 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-apl: NOTRUN -> [SKIP][76] ([fdo#109271]) +81 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglb: NOTRUN -> [SKIP][77] ([i915#3555])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][78] ([i915#265])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
- shard-apl: NOTRUN -> [FAIL][79] ([fdo#108145] / [i915#265])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) +1 similar issue
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1:
- shard-iclb: NOTRUN -> [SKIP][81] ([i915#5176]) +2 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1:
- shard-tglb: NOTRUN -> [SKIP][82] ([i915#5176]) +3 similar issues
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#658])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-iclb: [PASS][84] -> [SKIP][85] ([fdo#109642] / [fdo#111068] / [i915#658])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_basic:
- shard-tglb: NOTRUN -> [FAIL][86] ([i915#132] / [i915#3467]) +1 similar issue
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_psr@psr2_basic.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: [PASS][87] -> [SKIP][88] ([fdo#109441]) +2 similar issues
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_psr@psr2_sprite_blt:
- shard-iclb: NOTRUN -> [SKIP][89] ([fdo#109441])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglb: NOTRUN -> [SKIP][90] ([fdo#111615] / [i915#5289]) +1 similar issue
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][91] ([i915#5465]) +1 similar issue
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html
* {igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][92] ([i915#4070] / [i915#4098])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-2/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html
* {igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][93] ([i915#4098])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d.html
* igt@kms_vblank@pipe-a-wait-idle:
- shard-apl: NOTRUN -> [DMESG-WARN][94] ([i915#62])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_vblank@pipe-a-wait-idle.html
* igt@kms_vblank@pipe-d-wait-busy-hang:
- shard-glk: NOTRUN -> [SKIP][95] ([fdo#109271]) +87 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_vblank@pipe-d-wait-busy-hang.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2437])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@kms_writeback@writeback-check-output.html
* igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
- shard-iclb: NOTRUN -> [SKIP][97] ([i915#2530])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html
* igt@nouveau_crc@pipe-c-source-outp-inactive:
- shard-tglb: NOTRUN -> [SKIP][98] ([i915#2530]) +1 similar issue
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-inactive.html
* igt@perf@enable-disable:
- shard-glk: [PASS][99] -> [TIMEOUT][100] ([i915#6576])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk9/igt@perf@enable-disable.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@perf@enable-disable.html
* igt@syncobj_timeline@wait-for-submit-snapshot:
- shard-glk: [PASS][101] -> [FAIL][102] ([i915#5196])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@syncobj_timeline@wait-for-submit-snapshot.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk1/igt@syncobj_timeline@wait-for-submit-snapshot.html
* igt@sysfs_clients@fair-0:
- shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2994])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@sysfs_clients@fair-0.html
- shard-tglb: NOTRUN -> [SKIP][104] ([i915#2994])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@sysfs_clients@fair-0.html
- shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) +1 similar issue
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk6/igt@sysfs_clients@fair-0.html
- shard-iclb: NOTRUN -> [SKIP][106] ([i915#2994])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@sysfs_clients@fair-0.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [DMESG-WARN][107] ([i915#4528]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-snb2/igt@core_hotunplug@unbind-rebind.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb2/igt@core_hotunplug@unbind-rebind.html
* igt@drm_read@short-buffer-nonblock:
- {shard-rkl}: [SKIP][109] ([i915#4098]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@drm_read@short-buffer-nonblock.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@drm_read@short-buffer-nonblock.html
* igt@gem_ctx_exec@basic-nohangcheck:
- {shard-tglu}: [FAIL][111] ([i915#6268]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@in-flight-10ms:
- shard-tglb: [TIMEOUT][113] ([i915#3063]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb3/igt@gem_eio@in-flight-10ms.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@gem_eio@in-flight-10ms.html
- shard-iclb: [TIMEOUT][115] ([i915#3070]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb3/igt@gem_eio@in-flight-10ms.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@gem_eio@in-flight-10ms.html
* igt@gem_eio@kms:
- shard-tglb: [FAIL][117] ([i915#5784]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb5/igt@gem_eio@kms.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-iclb: [SKIP][119] ([i915#4525]) -> [PASS][120] +1 similar issue
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@gem_exec_balancer@parallel-out-fence.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-glk: [FAIL][121] ([i915#2842]) -> [PASS][122] +1 similar issue
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@gem_exec_fair@basic-none@vcs0.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_reloc@basic-concurrent16:
- {shard-rkl}: [SKIP][123] ([i915#3281]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@gem_exec_reloc@basic-concurrent16.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_pwrite_snooped:
- {shard-rkl}: [SKIP][125] ([i915#3282]) -> [PASS][126] +1 similar issue
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@gem_pwrite_snooped.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@gem_pwrite_snooped.html
* igt@i915_hangman@gt-engine-error@bcs0:
- {shard-rkl}: [SKIP][127] ([i915#6258]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_hangman@gt-engine-error@bcs0.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-1/igt@i915_hangman@gt-engine-error@bcs0.html
* igt@i915_pm_backlight@fade_with_dpms:
- {shard-rkl}: [SKIP][129] ([i915#3012]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_pm_backlight@fade_with_dpms.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@i915_pm_backlight@fade_with_dpms.html
* igt@i915_pm_dc@dc6-dpms:
- shard-iclb: [FAIL][131] ([i915#454]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][133] ([fdo#109271]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@cursor:
- {shard-rkl}: [SKIP][135] ([i915#1849]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_pm_rpm@cursor.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@i915_pm_rpm@cursor.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- {shard-dg1}: [SKIP][137] ([i915#1397]) -> [PASS][138] +2 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-dg1-15/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- {shard-rkl}: [SKIP][139] ([i915#1845] / [i915#4098]) -> [PASS][140] +7 similar issues
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-glk: [FAIL][141] ([i915#1888] / [i915#5138]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-iclb: [FAIL][143] ([i915#2346]) -> [PASS][144] +1 similar issue
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled:
- {shard-rkl}: [SKIP][145] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
* igt@kms_fbcon_fbt@psr-suspend:
- {shard-rkl}: [SKIP][147] ([fdo#110189] / [i915#3955]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-apl: [DMESG-WARN][149] ([i915#180]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- {shard-rkl}: [SKIP][151] ([i915#1849] / [i915#4098]) -> [PASS][152] +3 similar issues
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-tglb: [INCOMPLETE][153] ([i915#2411] / [i915#6598]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb2/igt@kms_frontbuffer_tracking@psr-suspend.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
- shard-iclb: [SKIP][155] ([i915#5235]) -> [PASS][156] +2 similar issues
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
* igt@kms_psr@psr2_primary_blt:
- shard-iclb: [SKIP][157] ([fdo#109441]) -> [PASS][158] +2 similar issues
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@kms_psr@psr2_primary_blt.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglb: [SKIP][159] ([i915#5519]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-iclb: [SKIP][161] ([i915#5519]) -> [PASS][162]
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_universal_plane@universal-plane-pipe-a-sanity:
- {shard-rkl}: [SKIP][163] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
* igt@perf_pmu@semaphore-busy@vcs1:
- {shard-dg1}: [FAIL][165] ([i915#4349]) -> [PASS][166] +3 similar issues
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-iclb: [WARN][167] ([i915#2684]) -> [FAIL][168] ([i915#2684])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_selftest@live@gt_pm:
- shard-tglb: [INCOMPLETE][169] ([i915#1759]) -> [DMESG-FAIL][170] ([i915#1759])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb7/igt@i915_selftest@live@gt_pm.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@i915_selftest@live@gt_pm.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-apl: [FAIL][171] ([i915#265]) -> [DMESG-FAIL][172] ([i915#62])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-iclb: [SKIP][173] ([fdo#111068] / [i915#658]) -> [SKIP][174] ([i915#2920])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@runner@aborted:
- shard-apl: ([FAIL][175], [FAIL][176], [FAIL][177], [FAIL][178]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) -> ([FAIL][179], [FAIL][180], [FAIL][181], [FAIL][182]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@runner@aborted.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@runner@aborted.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@runner@aborted.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl3/igt@runner@aborted.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@runner@aborted.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@runner@aborted.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@runner@aborted.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4765]: https://gitlab.freedesktop.org/drm/intel/issues/4765
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
[i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182
[i915#5196]: https://gitlab.freedesktop.org/drm/intel/issues/5196
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5748]: https://gitlab.freedesktop.org/drm/intel/issues/5748
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6576]: https://gitlab.freedesktop.org/drm/intel/issues/6576
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598
[i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6637]: https://gitlab.freedesktop.org/drm/intel/issues/6637
[i915#6714]: https://gitlab.freedesktop.org/drm/intel/issues/6714
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6642 -> IGTPW_7731
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12068: f2c3a05d33693ad51996fa7d12d3b2d4b0f372eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7731: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
IGT_6642: c018ce1d1ab8e570f665cf5d58c9802a44d66cc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
[-- Attachment #2: Type: text/html, Size: 60544 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
2022-09-03 17:48 [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Alex Hung
` (5 preceding siblings ...)
2022-09-05 5:35 ` Patchwork
@ 2022-09-05 6:18 ` Patchwork
2022-09-06 6:14 ` Patchwork
2022-09-06 7:01 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2022-09-05 6:18 UTC (permalink / raw)
To: Alex Hung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 56192 bytes --]
== Series Details ==
Series: series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
URL : https://patchwork.freedesktop.org/series/108096/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_12068_full -> IGTPW_7731_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_7731_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7731_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
Participating hosts (13 -> 10)
------------------------------
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7731_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- shard-glk: [PASS][1] -> [TIMEOUT][2] +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
#### Warnings ####
* igt@kms_vrr@flipline:
- shard-glk: [SKIP][3] ([fdo#109271]) -> [TIMEOUT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk1/igt@kms_vrr@flipline.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@kms_vrr@flipline.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_cursor_crc@cursor-offscreen-max-size}:
- {shard-dg1}: NOTRUN -> [SKIP][5] +3 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* {igt@kms_cursor_crc@cursor-onscreen-32x32}:
- {shard-rkl}: NOTRUN -> [SKIP][6] +4 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* {igt@kms_cursor_crc@cursor-onscreen-max-size}:
- {shard-rkl}: [SKIP][7] ([i915#4098]) -> [SKIP][8] +2 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* {igt@kms_cursor_crc@cursor-rapid-movement-512x512}:
- {shard-tglu}: NOTRUN -> [SKIP][9] +2 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
New tests
---------
New tests have been introduced between CI_DRM_12068_full and IGTPW_7731_full:
### New IGT tests (28) ###
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.51] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.37] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.33] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.37] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.46] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.39] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.36] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.47] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.90] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.85] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.85] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.84] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.40] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.38] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.55] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.46] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 1.17] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 1.81] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c:
- Statuses : 6 pass(s) 2 skip(s)
- Exec time: [0.0, 1.73] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d:
- Statuses : 3 pass(s) 4 skip(s)
- Exec time: [0.0, 1.66] s
Known issues
------------
Here are the changes found in IGTPW_7731_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ccs@block-copy-uncompressed:
- shard-iclb: NOTRUN -> [SKIP][10] ([i915#5327])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@gem_ccs@block-copy-uncompressed.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglb: NOTRUN -> [FAIL][11] ([i915#6268])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_eio@in-flight-contexts-immediate:
- shard-tglb: [PASS][13] -> [TIMEOUT][14] ([i915#3063])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html
* igt@gem_eio@reset-stress:
- shard-tglb: [PASS][15] -> [FAIL][16] ([i915#5784]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb3/igt@gem_eio@reset-stress.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-iclb: [PASS][17] -> [SKIP][18] ([i915#4525]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][19] ([i915#2842])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none@vcs1:
- shard-iclb: NOTRUN -> [FAIL][20] ([i915#2842])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][21] -> [FAIL][22] ([i915#2842])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fence@syncobj-timeline-unused-fence:
- shard-glk: [PASS][23] -> [TIMEOUT][24] ([i915#6715])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk2/igt@gem_exec_fence@syncobj-timeline-unused-fence.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_fence@syncobj-timeline-unused-fence.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-glk: [PASS][25] -> [TIMEOUT][26] ([i915#6714])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk6/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-glk: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk8/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-tglb: NOTRUN -> [SKIP][28] ([i915#4270]) +1 similar issue
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-iclb: NOTRUN -> [SKIP][29] ([i915#4270])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglb: NOTRUN -> [SKIP][30] ([i915#3297]) +2 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-iclb: NOTRUN -> [SKIP][31] ([i915#3297]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-apl: [PASS][32] -> [DMESG-WARN][33] ([i915#180]) +1 similar issue
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@gem_workarounds@suspend-resume.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@gem_workarounds@suspend-resume.html
* igt@gen3_render_tiledy_blits:
- shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109289]) +2 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@gen3_render_tiledy_blits.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglb: NOTRUN -> [SKIP][35] ([fdo#109289]) +3 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@kms_atomic@atomic_plane_damage:
- shard-iclb: NOTRUN -> [SKIP][36] ([i915#4765])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_atomic@atomic_plane_damage.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-iclb: NOTRUN -> [SKIP][37] ([i915#5286]) +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][38] ([i915#5286]) +2 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-tglb: NOTRUN -> [SKIP][39] ([fdo#111615])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][40] ([fdo#111615] / [i915#3689]) +2 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +3 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109278] / [i915#3886]) +2 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
- shard-tglb: NOTRUN -> [SKIP][43] ([i915#3689] / [i915#6095])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#3886]) +3 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl3/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
- shard-tglb: NOTRUN -> [SKIP][45] ([i915#3689] / [i915#3886])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][46] ([i915#3689]) +3 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
- shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109278]) +10 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html
* igt@kms_chamelium@common-hpd-after-suspend:
- shard-snb: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +4 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb7/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_chamelium@vga-frame-dump:
- shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +4 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@kms_chamelium@vga-frame-dump.html
* igt@kms_color_chamelium@ctm-max:
- shard-tglb: NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) +3 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@kms_color_chamelium@ctm-max.html
- shard-glk: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +2 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk3/igt@kms_color_chamelium@ctm-max.html
- shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109284] / [fdo#111827]) +1 similar issue
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_color_chamelium@ctm-max.html
* igt@kms_content_protection@legacy:
- shard-tglb: NOTRUN -> [SKIP][53] ([i915#1063]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-iclb: NOTRUN -> [SKIP][54] ([fdo#109300] / [fdo#111066])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-apl: NOTRUN -> [FAIL][55] ([i915#2105])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-tglb: NOTRUN -> [SKIP][56] ([fdo#109274] / [fdo#111825]) +7 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip@atomic:
- shard-apl: [PASS][57] -> [DMESG-WARN][58] ([i915#62]) +22 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl7/igt@kms_cursor_legacy@cursor-vs-flip@atomic.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_cursor_legacy@cursor-vs-flip@atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-glk: [PASS][59] -> [FAIL][60] ([i915#2346]) +1 similar issue
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-tglb: NOTRUN -> [SKIP][61] ([i915#426])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern.html
- shard-iclb: NOTRUN -> [SKIP][62] ([i915#426])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:
- shard-tglb: NOTRUN -> [SKIP][63] ([i915#5287])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
- shard-iclb: NOTRUN -> [SKIP][64] ([i915#5287])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [FAIL][65] ([i915#4767])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109274]) +2 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb5/igt@kms_flip@2x-dpms-vs-vblank-race.html
- shard-tglb: NOTRUN -> [SKIP][67] ([fdo#109274] / [fdo#111825] / [i915#3637])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
- shard-iclb: [PASS][68] -> [DMESG-WARN][69] ([i915#2867])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb5/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-iclb: NOTRUN -> [SKIP][70] ([i915#2672]) +4 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
- shard-tglb: NOTRUN -> [SKIP][71] ([i915#2672]) +1 similar issue
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][72] ([i915#3555]) +2 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][73] ([i915#2672] / [i915#3555])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109280]) +5 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglb: NOTRUN -> [SKIP][75] ([i915#6497]) +3 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109280] / [fdo#111825]) +10 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][77] ([fdo#109271]) +123 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-apl: NOTRUN -> [SKIP][78] ([fdo#109271]) +81 similar issues
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglb: NOTRUN -> [SKIP][79] ([i915#3555])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][80] ([i915#265])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
- shard-apl: NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][82] ([fdo#108145] / [i915#265]) +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1:
- shard-iclb: NOTRUN -> [SKIP][83] ([i915#5176]) +2 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1:
- shard-tglb: NOTRUN -> [SKIP][84] ([i915#5176]) +3 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#658])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-iclb: [PASS][86] -> [SKIP][87] ([fdo#109642] / [fdo#111068] / [i915#658])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_basic:
- shard-tglb: NOTRUN -> [FAIL][88] ([i915#132] / [i915#3467]) +1 similar issue
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_psr@psr2_basic.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: [PASS][89] -> [SKIP][90] ([fdo#109441]) +2 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_psr@psr2_sprite_blt:
- shard-iclb: NOTRUN -> [SKIP][91] ([fdo#109441])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglb: NOTRUN -> [SKIP][92] ([fdo#111615] / [i915#5289]) +1 similar issue
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][93] ([i915#5465]) +1 similar issue
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html
* {igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][94] ([i915#4070] / [i915#4098])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-2/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html
* {igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][95] ([i915#4098])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d.html
* igt@kms_vblank@pipe-a-wait-idle:
- shard-apl: NOTRUN -> [DMESG-WARN][96] ([i915#62])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_vblank@pipe-a-wait-idle.html
* igt@kms_vblank@pipe-d-wait-busy-hang:
- shard-glk: NOTRUN -> [SKIP][97] ([fdo#109271]) +87 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_vblank@pipe-d-wait-busy-hang.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2437])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@kms_writeback@writeback-check-output.html
* igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
- shard-iclb: NOTRUN -> [SKIP][99] ([i915#2530])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html
* igt@nouveau_crc@pipe-c-source-outp-inactive:
- shard-tglb: NOTRUN -> [SKIP][100] ([i915#2530]) +1 similar issue
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-inactive.html
* igt@perf@enable-disable:
- shard-glk: [PASS][101] -> [TIMEOUT][102] ([i915#6576])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk9/igt@perf@enable-disable.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@perf@enable-disable.html
* igt@syncobj_timeline@wait-for-submit-snapshot:
- shard-glk: [PASS][103] -> [FAIL][104] ([i915#5196])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@syncobj_timeline@wait-for-submit-snapshot.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk1/igt@syncobj_timeline@wait-for-submit-snapshot.html
* igt@sysfs_clients@fair-0:
- shard-apl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@sysfs_clients@fair-0.html
- shard-tglb: NOTRUN -> [SKIP][106] ([i915#2994])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@sysfs_clients@fair-0.html
- shard-glk: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#2994]) +1 similar issue
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk6/igt@sysfs_clients@fair-0.html
- shard-iclb: NOTRUN -> [SKIP][108] ([i915#2994])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@sysfs_clients@fair-0.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [DMESG-WARN][109] ([i915#4528]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-snb2/igt@core_hotunplug@unbind-rebind.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb2/igt@core_hotunplug@unbind-rebind.html
* igt@drm_read@short-buffer-nonblock:
- {shard-rkl}: [SKIP][111] ([i915#4098]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@drm_read@short-buffer-nonblock.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@drm_read@short-buffer-nonblock.html
* igt@gem_ctx_exec@basic-nohangcheck:
- {shard-tglu}: [FAIL][113] ([i915#6268]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@in-flight-10ms:
- shard-tglb: [TIMEOUT][115] ([i915#3063]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb3/igt@gem_eio@in-flight-10ms.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@gem_eio@in-flight-10ms.html
- shard-iclb: [TIMEOUT][117] ([i915#3070]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb3/igt@gem_eio@in-flight-10ms.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@gem_eio@in-flight-10ms.html
* igt@gem_eio@kms:
- shard-tglb: [FAIL][119] ([i915#5784]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb5/igt@gem_eio@kms.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-iclb: [SKIP][121] ([i915#4525]) -> [PASS][122] +1 similar issue
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@gem_exec_balancer@parallel-out-fence.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-glk: [FAIL][123] ([i915#2842]) -> [PASS][124] +1 similar issue
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@gem_exec_fair@basic-none@vcs0.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_reloc@basic-concurrent16:
- {shard-rkl}: [SKIP][125] ([i915#3281]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@gem_exec_reloc@basic-concurrent16.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_pwrite_snooped:
- {shard-rkl}: [SKIP][127] ([i915#3282]) -> [PASS][128] +1 similar issue
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@gem_pwrite_snooped.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@gem_pwrite_snooped.html
* igt@i915_hangman@gt-engine-error@bcs0:
- {shard-rkl}: [SKIP][129] ([i915#6258]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_hangman@gt-engine-error@bcs0.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-1/igt@i915_hangman@gt-engine-error@bcs0.html
* igt@i915_pm_backlight@fade_with_dpms:
- {shard-rkl}: [SKIP][131] ([i915#3012]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_pm_backlight@fade_with_dpms.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@i915_pm_backlight@fade_with_dpms.html
* igt@i915_pm_dc@dc6-dpms:
- shard-iclb: [FAIL][133] ([i915#454]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][135] ([fdo#109271]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@cursor:
- {shard-rkl}: [SKIP][137] ([i915#1849]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_pm_rpm@cursor.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@i915_pm_rpm@cursor.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- {shard-dg1}: [SKIP][139] ([i915#1397]) -> [PASS][140] +2 similar issues
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-dg1-15/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- {shard-rkl}: [SKIP][141] ([i915#1845] / [i915#4098]) -> [PASS][142] +7 similar issues
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-glk: [FAIL][143] ([i915#1888] / [i915#5138]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-iclb: [FAIL][145] ([i915#2346]) -> [PASS][146] +1 similar issue
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled:
- {shard-rkl}: [SKIP][147] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
* igt@kms_fbcon_fbt@psr-suspend:
- {shard-rkl}: [SKIP][149] ([fdo#110189] / [i915#3955]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-apl: [DMESG-WARN][151] ([i915#180]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- {shard-rkl}: [SKIP][153] ([i915#1849] / [i915#4098]) -> [PASS][154] +3 similar issues
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-tglb: [INCOMPLETE][155] ([i915#2411] / [i915#6598]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb2/igt@kms_frontbuffer_tracking@psr-suspend.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
- shard-iclb: [SKIP][157] ([i915#5235]) -> [PASS][158] +2 similar issues
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
* igt@kms_psr@psr2_primary_blt:
- shard-iclb: [SKIP][159] ([fdo#109441]) -> [PASS][160] +2 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@kms_psr@psr2_primary_blt.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglb: [SKIP][161] ([i915#5519]) -> [PASS][162]
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-iclb: [SKIP][163] ([i915#5519]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_universal_plane@universal-plane-pipe-a-sanity:
- {shard-rkl}: [SKIP][165] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
* igt@perf_pmu@semaphore-busy@vcs1:
- {shard-dg1}: [FAIL][167] ([i915#4349]) -> [PASS][168] +3 similar issues
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-iclb: [WARN][169] ([i915#2684]) -> [FAIL][170] ([i915#2684])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_selftest@live@gt_pm:
- shard-tglb: [INCOMPLETE][171] ([i915#1759]) -> [DMESG-FAIL][172] ([i915#1759])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb7/igt@i915_selftest@live@gt_pm.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@i915_selftest@live@gt_pm.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-apl: [FAIL][173] ([i915#265]) -> [DMESG-FAIL][174] ([i915#62])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-iclb: [SKIP][175] ([fdo#111068] / [i915#658]) -> [SKIP][176] ([i915#2920])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@runner@aborted:
- shard-apl: ([FAIL][177], [FAIL][178], [FAIL][179], [FAIL][180]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) -> ([FAIL][181], [FAIL][182], [FAIL][183], [FAIL][184]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@runner@aborted.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@runner@aborted.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@runner@aborted.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl3/igt@runner@aborted.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@runner@aborted.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@runner@aborted.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@runner@aborted.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4765]: https://gitlab.freedesktop.org/drm/intel/issues/4765
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
[i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182
[i915#5196]: https://gitlab.freedesktop.org/drm/intel/issues/5196
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5748]: https://gitlab.freedesktop.org/drm/intel/issues/5748
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6576]: https://gitlab.freedesktop.org/drm/intel/issues/6576
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598
[i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6637]: https://gitlab.freedesktop.org/drm/intel/issues/6637
[i915#6714]: https://gitlab.freedesktop.org/drm/intel/issues/6714
[i915#6715]: https://gitlab.freedesktop.org/drm/intel/issues/6715
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6642 -> IGTPW_7731
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12068: f2c3a05d33693ad51996fa7d12d3b2d4b0f372eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7731: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
IGT_6642: c018ce1d1ab8e570f665cf5d58c9802a44d66cc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
[-- Attachment #2: Type: text/html, Size: 61034 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
2022-09-03 17:48 [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Alex Hung
` (6 preceding siblings ...)
2022-09-05 6:18 ` Patchwork
@ 2022-09-06 6:14 ` Patchwork
2022-09-06 7:01 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2022-09-06 6:14 UTC (permalink / raw)
To: Alex Hung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 55405 bytes --]
== Series Details ==
Series: series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
URL : https://patchwork.freedesktop.org/series/108096/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_12068_full -> IGTPW_7731_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_7731_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7731_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
Participating hosts (13 -> 10)
------------------------------
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7731_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@pipe-b-wait-forked-busy:
- shard-glk: [PASS][1] -> [TIMEOUT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@kms_vblank@pipe-b-wait-forked-busy.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@kms_vblank@pipe-b-wait-forked-busy.html
#### Warnings ####
* igt@kms_vrr@flipline:
- shard-glk: [SKIP][3] ([fdo#109271]) -> [TIMEOUT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk1/igt@kms_vrr@flipline.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@kms_vrr@flipline.html
New tests
---------
New tests have been introduced between CI_DRM_12068_full and IGTPW_7731_full:
### New IGT tests (28) ###
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.51] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.37] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.33] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.37] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.46] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.39] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.36] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.47] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.90] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.85] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.85] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.84] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.40] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.38] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.55] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.46] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 1.17] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 1.81] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c:
- Statuses : 6 pass(s) 2 skip(s)
- Exec time: [0.0, 1.73] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d:
- Statuses : 3 pass(s) 4 skip(s)
- Exec time: [0.0, 1.66] s
Known issues
------------
Here are the changes found in IGTPW_7731_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ccs@block-copy-uncompressed:
- shard-iclb: NOTRUN -> [SKIP][5] ([i915#5327])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@gem_ccs@block-copy-uncompressed.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglb: NOTRUN -> [FAIL][6] ([i915#6268])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) +1 similar issue
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_eio@in-flight-contexts-immediate:
- shard-tglb: [PASS][8] -> [TIMEOUT][9] ([i915#3063])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html
* igt@gem_eio@reset-stress:
- shard-tglb: [PASS][10] -> [FAIL][11] ([i915#5784]) +1 similar issue
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb3/igt@gem_eio@reset-stress.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-iclb: [PASS][12] -> [SKIP][13] ([i915#4525]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][14] ([i915#2842])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none@vcs1:
- shard-iclb: NOTRUN -> [FAIL][15] ([i915#2842])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][16] -> [FAIL][17] ([i915#2842])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fence@syncobj-timeline-unused-fence:
- shard-glk: [PASS][18] -> [TIMEOUT][19] ([i915#6715])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk2/igt@gem_exec_fence@syncobj-timeline-unused-fence.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_fence@syncobj-timeline-unused-fence.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-glk: [PASS][20] -> [TIMEOUT][21] ([i915#6714])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk6/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-glk: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#4613])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk8/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-tglb: NOTRUN -> [SKIP][23] ([i915#4270]) +1 similar issue
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-iclb: NOTRUN -> [SKIP][24] ([i915#4270])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglb: NOTRUN -> [SKIP][25] ([i915#3297]) +2 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-iclb: NOTRUN -> [SKIP][26] ([i915#3297]) +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-apl: [PASS][27] -> [DMESG-WARN][28] ([i915#180]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@gem_workarounds@suspend-resume.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@gem_workarounds@suspend-resume.html
* igt@gen3_render_tiledy_blits:
- shard-iclb: NOTRUN -> [SKIP][29] ([fdo#109289]) +2 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@gen3_render_tiledy_blits.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglb: NOTRUN -> [SKIP][30] ([fdo#109289]) +3 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@kms_atomic@atomic_plane_damage:
- shard-iclb: NOTRUN -> [SKIP][31] ([i915#4765])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_atomic@atomic_plane_damage.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-iclb: NOTRUN -> [SKIP][32] ([i915#5286]) +1 similar issue
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][33] ([i915#5286]) +2 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- shard-glk: [PASS][34] -> [TIMEOUT][35] ([i915#6729])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-tglb: NOTRUN -> [SKIP][36] ([fdo#111615])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][37] ([fdo#111615] / [i915#3689]) +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886]) +3 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109278] / [i915#3886]) +2 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
- shard-tglb: NOTRUN -> [SKIP][40] ([i915#3689] / [i915#6095])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +3 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl3/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
- shard-tglb: NOTRUN -> [SKIP][42] ([i915#3689] / [i915#3886])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][43] ([i915#3689]) +3 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
- shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109278]) +10 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html
* igt@kms_chamelium@common-hpd-after-suspend:
- shard-snb: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +4 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb7/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_chamelium@vga-frame-dump:
- shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +4 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@kms_chamelium@vga-frame-dump.html
* igt@kms_color_chamelium@ctm-max:
- shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@kms_color_chamelium@ctm-max.html
- shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +2 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk3/igt@kms_color_chamelium@ctm-max.html
- shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109284] / [fdo#111827]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_color_chamelium@ctm-max.html
* igt@kms_content_protection@legacy:
- shard-tglb: NOTRUN -> [SKIP][50] ([i915#1063]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109300] / [fdo#111066])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-apl: NOTRUN -> [FAIL][52] ([i915#2105])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-tglb: NOTRUN -> [SKIP][53] ([fdo#109274] / [fdo#111825]) +7 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip@atomic:
- shard-apl: [PASS][54] -> [DMESG-WARN][55] ([i915#62]) +22 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl7/igt@kms_cursor_legacy@cursor-vs-flip@atomic.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_cursor_legacy@cursor-vs-flip@atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-glk: [PASS][56] -> [FAIL][57] ([i915#2346]) +1 similar issue
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-tglb: NOTRUN -> [SKIP][58] ([i915#426])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern.html
- shard-iclb: NOTRUN -> [SKIP][59] ([i915#426])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:
- shard-tglb: NOTRUN -> [SKIP][60] ([i915#5287])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
- shard-iclb: NOTRUN -> [SKIP][61] ([i915#5287])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [FAIL][62] ([i915#4767])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109274]) +2 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb5/igt@kms_flip@2x-dpms-vs-vblank-race.html
- shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109274] / [fdo#111825] / [i915#3637])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
- shard-iclb: [PASS][65] -> [DMESG-WARN][66] ([i915#2867])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb5/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-iclb: NOTRUN -> [SKIP][67] ([i915#2672]) +4 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
- shard-tglb: NOTRUN -> [SKIP][68] ([i915#2672]) +1 similar issue
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][69] ([i915#3555]) +2 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][70] ([i915#2672] / [i915#3555])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109280]) +5 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglb: NOTRUN -> [SKIP][72] ([i915#6497]) +3 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-tglb: NOTRUN -> [SKIP][73] ([fdo#109280] / [fdo#111825]) +10 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][74] ([fdo#109271]) +123 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271]) +81 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglb: NOTRUN -> [SKIP][76] ([i915#3555])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][77] ([i915#265])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
- shard-apl: NOTRUN -> [FAIL][78] ([fdo#108145] / [i915#265])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][79] ([fdo#108145] / [i915#265]) +1 similar issue
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1:
- shard-iclb: NOTRUN -> [SKIP][80] ([i915#5176]) +2 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1:
- shard-tglb: NOTRUN -> [SKIP][81] ([i915#5176]) +3 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#658])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-iclb: [PASS][83] -> [SKIP][84] ([fdo#109642] / [fdo#111068] / [i915#658])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_basic:
- shard-tglb: NOTRUN -> [FAIL][85] ([i915#132] / [i915#3467]) +1 similar issue
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_psr@psr2_basic.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: [PASS][86] -> [SKIP][87] ([fdo#109441]) +2 similar issues
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_psr@psr2_sprite_blt:
- shard-iclb: NOTRUN -> [SKIP][88] ([fdo#109441])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglb: NOTRUN -> [SKIP][89] ([fdo#111615] / [i915#5289]) +1 similar issue
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][90] ([i915#5465]) +1 similar issue
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html
* {igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][91] ([i915#4070] / [i915#4098])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-2/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html
* {igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][92] ([i915#4098])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d.html
* igt@kms_vblank@pipe-a-wait-idle:
- shard-apl: NOTRUN -> [DMESG-WARN][93] ([i915#62])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_vblank@pipe-a-wait-idle.html
* igt@kms_vblank@pipe-d-wait-busy-hang:
- shard-glk: NOTRUN -> [SKIP][94] ([fdo#109271]) +87 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_vblank@pipe-d-wait-busy-hang.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2437])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@kms_writeback@writeback-check-output.html
* igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
- shard-iclb: NOTRUN -> [SKIP][96] ([i915#2530])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html
* igt@nouveau_crc@pipe-c-source-outp-inactive:
- shard-tglb: NOTRUN -> [SKIP][97] ([i915#2530]) +1 similar issue
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-inactive.html
* igt@perf@enable-disable:
- shard-glk: [PASS][98] -> [TIMEOUT][99] ([i915#6576])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk9/igt@perf@enable-disable.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@perf@enable-disable.html
* igt@syncobj_timeline@wait-for-submit-snapshot:
- shard-glk: [PASS][100] -> [FAIL][101] ([i915#5196])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@syncobj_timeline@wait-for-submit-snapshot.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk1/igt@syncobj_timeline@wait-for-submit-snapshot.html
* igt@sysfs_clients@fair-0:
- shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2994])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@sysfs_clients@fair-0.html
- shard-tglb: NOTRUN -> [SKIP][103] ([i915#2994])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@sysfs_clients@fair-0.html
- shard-glk: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2994]) +1 similar issue
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk6/igt@sysfs_clients@fair-0.html
- shard-iclb: NOTRUN -> [SKIP][105] ([i915#2994])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@sysfs_clients@fair-0.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [DMESG-WARN][106] ([i915#4528]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-snb2/igt@core_hotunplug@unbind-rebind.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb2/igt@core_hotunplug@unbind-rebind.html
* igt@drm_read@short-buffer-nonblock:
- {shard-rkl}: [SKIP][108] ([i915#4098]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@drm_read@short-buffer-nonblock.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@drm_read@short-buffer-nonblock.html
* igt@gem_ctx_exec@basic-nohangcheck:
- {shard-tglu}: [FAIL][110] ([i915#6268]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@in-flight-10ms:
- shard-tglb: [TIMEOUT][112] ([i915#3063]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb3/igt@gem_eio@in-flight-10ms.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@gem_eio@in-flight-10ms.html
- shard-iclb: [TIMEOUT][114] ([i915#3070]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb3/igt@gem_eio@in-flight-10ms.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@gem_eio@in-flight-10ms.html
* igt@gem_eio@kms:
- shard-tglb: [FAIL][116] ([i915#5784]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb5/igt@gem_eio@kms.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-iclb: [SKIP][118] ([i915#4525]) -> [PASS][119] +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@gem_exec_balancer@parallel-out-fence.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-glk: [FAIL][120] ([i915#2842]) -> [PASS][121] +1 similar issue
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@gem_exec_fair@basic-none@vcs0.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_reloc@basic-concurrent16:
- {shard-rkl}: [SKIP][122] ([i915#3281]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@gem_exec_reloc@basic-concurrent16.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_pwrite_snooped:
- {shard-rkl}: [SKIP][124] ([i915#3282]) -> [PASS][125] +1 similar issue
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@gem_pwrite_snooped.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@gem_pwrite_snooped.html
* igt@i915_hangman@gt-engine-error@bcs0:
- {shard-rkl}: [SKIP][126] ([i915#6258]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_hangman@gt-engine-error@bcs0.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-1/igt@i915_hangman@gt-engine-error@bcs0.html
* igt@i915_pm_backlight@fade_with_dpms:
- {shard-rkl}: [SKIP][128] ([i915#3012]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_pm_backlight@fade_with_dpms.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@i915_pm_backlight@fade_with_dpms.html
* igt@i915_pm_dc@dc6-dpms:
- shard-iclb: [FAIL][130] ([i915#454]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][132] ([fdo#109271]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@cursor:
- {shard-rkl}: [SKIP][134] ([i915#1849]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_pm_rpm@cursor.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@i915_pm_rpm@cursor.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- {shard-dg1}: [SKIP][136] ([i915#1397]) -> [PASS][137] +2 similar issues
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-dg1-15/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- {shard-rkl}: [SKIP][138] ([i915#1845] / [i915#4098]) -> [PASS][139] +7 similar issues
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-glk: [FAIL][140] ([i915#1888] / [i915#5138]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-iclb: [FAIL][142] ([i915#2346]) -> [PASS][143] +1 similar issue
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled:
- {shard-rkl}: [SKIP][144] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
* igt@kms_fbcon_fbt@psr-suspend:
- {shard-rkl}: [SKIP][146] ([fdo#110189] / [i915#3955]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-apl: [DMESG-WARN][148] ([i915#180]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- {shard-rkl}: [SKIP][150] ([i915#1849] / [i915#4098]) -> [PASS][151] +3 similar issues
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-tglb: [INCOMPLETE][152] ([i915#2411] / [i915#6598]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb2/igt@kms_frontbuffer_tracking@psr-suspend.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
- shard-iclb: [SKIP][154] ([i915#5235]) -> [PASS][155] +2 similar issues
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
* igt@kms_psr@psr2_primary_blt:
- shard-iclb: [SKIP][156] ([fdo#109441]) -> [PASS][157] +2 similar issues
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@kms_psr@psr2_primary_blt.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglb: [SKIP][158] ([i915#5519]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-iclb: [SKIP][160] ([i915#5519]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_universal_plane@universal-plane-pipe-a-sanity:
- {shard-rkl}: [SKIP][162] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
* igt@perf_pmu@semaphore-busy@vcs1:
- {shard-dg1}: [FAIL][164] ([i915#4349]) -> [PASS][165] +3 similar issues
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-iclb: [WARN][166] ([i915#2684]) -> [FAIL][167] ([i915#2684])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_selftest@live@gt_pm:
- shard-tglb: [INCOMPLETE][168] ([i915#1759]) -> [DMESG-FAIL][169] ([i915#1759])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb7/igt@i915_selftest@live@gt_pm.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@i915_selftest@live@gt_pm.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-apl: [FAIL][170] ([i915#265]) -> [DMESG-FAIL][171] ([i915#62])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-iclb: [SKIP][172] ([fdo#111068] / [i915#658]) -> [SKIP][173] ([i915#2920])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@runner@aborted:
- shard-apl: ([FAIL][174], [FAIL][175], [FAIL][176], [FAIL][177]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) -> ([FAIL][178], [FAIL][179], [FAIL][180], [FAIL][181]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@runner@aborted.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@runner@aborted.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@runner@aborted.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl3/igt@runner@aborted.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@runner@aborted.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@runner@aborted.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@runner@aborted.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4765]: https://gitlab.freedesktop.org/drm/intel/issues/4765
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
[i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182
[i915#5196]: https://gitlab.freedesktop.org/drm/intel/issues/5196
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5748]: https://gitlab.freedesktop.org/drm/intel/issues/5748
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6576]: https://gitlab.freedesktop.org/drm/intel/issues/6576
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598
[i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6637]: https://gitlab.freedesktop.org/drm/intel/issues/6637
[i915#6714]: https://gitlab.freedesktop.org/drm/intel/issues/6714
[i915#6715]: https://gitlab.freedesktop.org/drm/intel/issues/6715
[i915#6729]: https://gitlab.freedesktop.org/drm/intel/issues/6729
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6642 -> IGTPW_7731
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12068: f2c3a05d33693ad51996fa7d12d3b2d4b0f372eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7731: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
IGT_6642: c018ce1d1ab8e570f665cf5d58c9802a44d66cc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
[-- Attachment #2: Type: text/html, Size: 59991 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
2022-09-03 17:48 [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Alex Hung
` (7 preceding siblings ...)
2022-09-06 6:14 ` Patchwork
@ 2022-09-06 7:01 ` Patchwork
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2022-09-06 7:01 UTC (permalink / raw)
To: Alex Hung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 55439 bytes --]
== Series Details ==
Series: series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2)
URL : https://patchwork.freedesktop.org/series/108096/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12068_full -> IGTPW_7731_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_7731_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7731_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
Participating hosts (13 -> 10)
------------------------------
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7731_full:
### IGT changes ###
#### Warnings ####
* igt@kms_vrr@flipline:
- shard-glk: [SKIP][1] ([fdo#109271]) -> [TIMEOUT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk1/igt@kms_vrr@flipline.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@kms_vrr@flipline.html
New tests
---------
New tests have been introduced between CI_DRM_12068_full and IGTPW_7731_full:
### New IGT tests (28) ###
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.51] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.37] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.33] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.37] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.46] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.39] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.36] s
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.47] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.90] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.85] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.85] s
* igt@kms_cursor_crc@cursor-random-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.84] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.40] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.38] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x42@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.55] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [5.46] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 1.17] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 1.81] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c:
- Statuses : 6 pass(s) 2 skip(s)
- Exec time: [0.0, 1.73] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d:
- Statuses : 3 pass(s) 4 skip(s)
- Exec time: [0.0, 1.66] s
Known issues
------------
Here are the changes found in IGTPW_7731_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ccs@block-copy-uncompressed:
- shard-iclb: NOTRUN -> [SKIP][3] ([i915#5327])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@gem_ccs@block-copy-uncompressed.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglb: NOTRUN -> [FAIL][4] ([i915#6268])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_eio@in-flight-contexts-immediate:
- shard-tglb: [PASS][6] -> [TIMEOUT][7] ([i915#3063])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@gem_eio@in-flight-contexts-immediate.html
* igt@gem_eio@reset-stress:
- shard-tglb: [PASS][8] -> [FAIL][9] ([i915#5784]) +1 similar issue
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb3/igt@gem_eio@reset-stress.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-iclb: [PASS][10] -> [SKIP][11] ([i915#4525]) +1 similar issue
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][12] ([i915#2842])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none@vcs1:
- shard-iclb: NOTRUN -> [FAIL][13] ([i915#2842])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][14] -> [FAIL][15] ([i915#2842])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fence@syncobj-timeline-unused-fence:
- shard-glk: [PASS][16] -> [TIMEOUT][17] ([i915#6715])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk2/igt@gem_exec_fence@syncobj-timeline-unused-fence.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_fence@syncobj-timeline-unused-fence.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-glk: [PASS][18] -> [TIMEOUT][19] ([i915#6714])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk6/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-glk: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk8/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-tglb: NOTRUN -> [SKIP][21] ([i915#4270]) +1 similar issue
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-iclb: NOTRUN -> [SKIP][22] ([i915#4270])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglb: NOTRUN -> [SKIP][23] ([i915#3297]) +2 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-iclb: NOTRUN -> [SKIP][24] ([i915#3297]) +1 similar issue
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-apl: [PASS][25] -> [DMESG-WARN][26] ([i915#180]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@gem_workarounds@suspend-resume.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@gem_workarounds@suspend-resume.html
* igt@gen3_render_tiledy_blits:
- shard-iclb: NOTRUN -> [SKIP][27] ([fdo#109289]) +2 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@gen3_render_tiledy_blits.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglb: NOTRUN -> [SKIP][28] ([fdo#109289]) +3 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@kms_atomic@atomic_plane_damage:
- shard-iclb: NOTRUN -> [SKIP][29] ([i915#4765])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_atomic@atomic_plane_damage.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-iclb: NOTRUN -> [SKIP][30] ([i915#5286]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][31] ([i915#5286]) +2 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- shard-glk: [PASS][32] -> [TIMEOUT][33] ([i915#6729])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-tglb: NOTRUN -> [SKIP][34] ([fdo#111615])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][35] ([fdo#111615] / [i915#3689]) +2 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#3886]) +3 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][37] ([fdo#109278] / [i915#3886]) +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
- shard-tglb: NOTRUN -> [SKIP][38] ([i915#3689] / [i915#6095])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) +3 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl3/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
- shard-tglb: NOTRUN -> [SKIP][40] ([i915#3689] / [i915#3886])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][41] ([i915#3689]) +3 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
- shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109278]) +10 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html
* igt@kms_chamelium@common-hpd-after-suspend:
- shard-snb: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +4 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb7/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_chamelium@vga-frame-dump:
- shard-apl: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +4 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@kms_chamelium@vga-frame-dump.html
* igt@kms_color_chamelium@ctm-max:
- shard-tglb: NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +3 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb7/igt@kms_color_chamelium@ctm-max.html
- shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +2 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk3/igt@kms_color_chamelium@ctm-max.html
- shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +1 similar issue
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_color_chamelium@ctm-max.html
* igt@kms_content_protection@legacy:
- shard-tglb: NOTRUN -> [SKIP][48] ([i915#1063]) +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109300] / [fdo#111066])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-apl: NOTRUN -> [FAIL][50] ([i915#2105])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109274] / [fdo#111825]) +7 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip@atomic:
- shard-apl: [PASS][52] -> [DMESG-WARN][53] ([i915#62]) +22 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl7/igt@kms_cursor_legacy@cursor-vs-flip@atomic.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_cursor_legacy@cursor-vs-flip@atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-glk: [PASS][54] -> [FAIL][55] ([i915#2346]) +1 similar issue
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-tglb: NOTRUN -> [SKIP][56] ([i915#426])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern.html
- shard-iclb: NOTRUN -> [SKIP][57] ([i915#426])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:
- shard-tglb: NOTRUN -> [SKIP][58] ([i915#5287])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
- shard-iclb: NOTRUN -> [SKIP][59] ([i915#5287])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [FAIL][60] ([i915#4767])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109274]) +2 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb5/igt@kms_flip@2x-dpms-vs-vblank-race.html
- shard-tglb: NOTRUN -> [SKIP][62] ([fdo#109274] / [fdo#111825] / [i915#3637])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
- shard-iclb: [PASS][63] -> [DMESG-WARN][64] ([i915#2867])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb5/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-iclb: NOTRUN -> [SKIP][65] ([i915#2672]) +4 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
- shard-tglb: NOTRUN -> [SKIP][66] ([i915#2672]) +1 similar issue
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][67] ([i915#3555]) +2 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][68] ([i915#2672] / [i915#3555])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-iclb: NOTRUN -> [SKIP][69] ([fdo#109280]) +5 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglb: NOTRUN -> [SKIP][70] ([i915#6497]) +3 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-tglb: NOTRUN -> [SKIP][71] ([fdo#109280] / [fdo#111825]) +10 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][72] ([fdo#109271]) +123 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271]) +81 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglb: NOTRUN -> [SKIP][74] ([i915#3555])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][75] ([i915#265])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
- shard-apl: NOTRUN -> [FAIL][76] ([fdo#108145] / [i915#265])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][77] ([fdo#108145] / [i915#265]) +1 similar issue
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1:
- shard-iclb: NOTRUN -> [SKIP][78] ([i915#5176]) +2 similar issues
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1:
- shard-tglb: NOTRUN -> [SKIP][79] ([i915#5176]) +3 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-edp-1.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#658])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-iclb: [PASS][81] -> [SKIP][82] ([fdo#109642] / [fdo#111068] / [i915#658])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_basic:
- shard-tglb: NOTRUN -> [FAIL][83] ([i915#132] / [i915#3467]) +1 similar issue
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_psr@psr2_basic.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: [PASS][84] -> [SKIP][85] ([fdo#109441]) +2 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_psr@psr2_sprite_blt:
- shard-iclb: NOTRUN -> [SKIP][86] ([fdo#109441])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglb: NOTRUN -> [SKIP][87] ([fdo#111615] / [i915#5289]) +1 similar issue
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][88] ([i915#5465]) +1 similar issue
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html
* {igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][89] ([i915#4070] / [i915#4098])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-2/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html
* {igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][90] ([i915#4098])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d.html
* igt@kms_vblank@pipe-a-wait-idle:
- shard-apl: NOTRUN -> [DMESG-WARN][91] ([i915#62])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_vblank@pipe-a-wait-idle.html
* igt@kms_vblank@pipe-b-wait-forked-busy:
- shard-glk: [PASS][92] -> [TIMEOUT][93] ([i915#6732])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@kms_vblank@pipe-b-wait-forked-busy.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@kms_vblank@pipe-b-wait-forked-busy.html
* igt@kms_vblank@pipe-d-wait-busy-hang:
- shard-glk: NOTRUN -> [SKIP][94] ([fdo#109271]) +87 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_vblank@pipe-d-wait-busy-hang.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2437])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@kms_writeback@writeback-check-output.html
* igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
- shard-iclb: NOTRUN -> [SKIP][96] ([i915#2530])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb8/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html
* igt@nouveau_crc@pipe-c-source-outp-inactive:
- shard-tglb: NOTRUN -> [SKIP][97] ([i915#2530]) +1 similar issue
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-inactive.html
* igt@perf@enable-disable:
- shard-glk: [PASS][98] -> [TIMEOUT][99] ([i915#6576])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk9/igt@perf@enable-disable.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk2/igt@perf@enable-disable.html
* igt@syncobj_timeline@wait-for-submit-snapshot:
- shard-glk: [PASS][100] -> [FAIL][101] ([i915#5196])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@syncobj_timeline@wait-for-submit-snapshot.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk1/igt@syncobj_timeline@wait-for-submit-snapshot.html
* igt@sysfs_clients@fair-0:
- shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2994])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@sysfs_clients@fair-0.html
- shard-tglb: NOTRUN -> [SKIP][103] ([i915#2994])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@sysfs_clients@fair-0.html
- shard-glk: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2994]) +1 similar issue
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk6/igt@sysfs_clients@fair-0.html
- shard-iclb: NOTRUN -> [SKIP][105] ([i915#2994])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@sysfs_clients@fair-0.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [DMESG-WARN][106] ([i915#4528]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-snb2/igt@core_hotunplug@unbind-rebind.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-snb2/igt@core_hotunplug@unbind-rebind.html
* igt@drm_read@short-buffer-nonblock:
- {shard-rkl}: [SKIP][108] ([i915#4098]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@drm_read@short-buffer-nonblock.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@drm_read@short-buffer-nonblock.html
* igt@gem_ctx_exec@basic-nohangcheck:
- {shard-tglu}: [FAIL][110] ([i915#6268]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglu-1/igt@gem_ctx_exec@basic-nohangcheck.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@in-flight-10ms:
- shard-tglb: [TIMEOUT][112] ([i915#3063]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb3/igt@gem_eio@in-flight-10ms.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@gem_eio@in-flight-10ms.html
- shard-iclb: [TIMEOUT][114] ([i915#3070]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb3/igt@gem_eio@in-flight-10ms.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@gem_eio@in-flight-10ms.html
* igt@gem_eio@kms:
- shard-tglb: [FAIL][116] ([i915#5784]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb5/igt@gem_eio@kms.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb6/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-iclb: [SKIP][118] ([i915#4525]) -> [PASS][119] +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@gem_exec_balancer@parallel-out-fence.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-glk: [FAIL][120] ([i915#2842]) -> [PASS][121] +1 similar issue
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk3/igt@gem_exec_fair@basic-none@vcs0.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_reloc@basic-concurrent16:
- {shard-rkl}: [SKIP][122] ([i915#3281]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@gem_exec_reloc@basic-concurrent16.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_pwrite_snooped:
- {shard-rkl}: [SKIP][124] ([i915#3282]) -> [PASS][125] +1 similar issue
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@gem_pwrite_snooped.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-5/igt@gem_pwrite_snooped.html
* igt@i915_hangman@gt-engine-error@bcs0:
- {shard-rkl}: [SKIP][126] ([i915#6258]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_hangman@gt-engine-error@bcs0.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-1/igt@i915_hangman@gt-engine-error@bcs0.html
* igt@i915_pm_backlight@fade_with_dpms:
- {shard-rkl}: [SKIP][128] ([i915#3012]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_pm_backlight@fade_with_dpms.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@i915_pm_backlight@fade_with_dpms.html
* igt@i915_pm_dc@dc6-dpms:
- shard-iclb: [FAIL][130] ([i915#454]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][132] ([fdo#109271]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@cursor:
- {shard-rkl}: [SKIP][134] ([i915#1849]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@i915_pm_rpm@cursor.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@i915_pm_rpm@cursor.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- {shard-dg1}: [SKIP][136] ([i915#1397]) -> [PASS][137] +2 similar issues
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-dg1-15/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- {shard-rkl}: [SKIP][138] ([i915#1845] / [i915#4098]) -> [PASS][139] +7 similar issues
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-glk: [FAIL][140] ([i915#1888] / [i915#5138]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-glk5/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-glk7/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-iclb: [FAIL][142] ([i915#2346]) -> [PASS][143] +1 similar issue
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled:
- {shard-rkl}: [SKIP][144] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
* igt@kms_fbcon_fbt@psr-suspend:
- {shard-rkl}: [SKIP][146] ([fdo#110189] / [i915#3955]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-apl: [DMESG-WARN][148] ([i915#180]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- {shard-rkl}: [SKIP][150] ([i915#1849] / [i915#4098]) -> [PASS][151] +3 similar issues
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-tglb: [INCOMPLETE][152] ([i915#2411] / [i915#6598]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb2/igt@kms_frontbuffer_tracking@psr-suspend.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb3/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
- shard-iclb: [SKIP][154] ([i915#5235]) -> [PASS][155] +2 similar issues
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
* igt@kms_psr@psr2_primary_blt:
- shard-iclb: [SKIP][156] ([fdo#109441]) -> [PASS][157] +2 similar issues
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@kms_psr@psr2_primary_blt.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglb: [SKIP][158] ([i915#5519]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-iclb: [SKIP][160] ([i915#5519]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_universal_plane@universal-plane-pipe-a-sanity:
- {shard-rkl}: [SKIP][162] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html
* igt@perf_pmu@semaphore-busy@vcs1:
- {shard-dg1}: [FAIL][164] ([i915#4349]) -> [PASS][165] +3 similar issues
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-iclb: [WARN][166] ([i915#2684]) -> [FAIL][167] ([i915#2684])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_selftest@live@gt_pm:
- shard-tglb: [INCOMPLETE][168] ([i915#1759]) -> [DMESG-FAIL][169] ([i915#1759])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-tglb7/igt@i915_selftest@live@gt_pm.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-tglb5/igt@i915_selftest@live@gt_pm.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-apl: [FAIL][170] ([i915#265]) -> [DMESG-FAIL][171] ([i915#62])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-iclb: [SKIP][172] ([fdo#111068] / [i915#658]) -> [SKIP][173] ([i915#2920])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@runner@aborted:
- shard-apl: ([FAIL][174], [FAIL][175], [FAIL][176], [FAIL][177]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) -> ([FAIL][178], [FAIL][179], [FAIL][180], [FAIL][181]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl3/igt@runner@aborted.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl8/igt@runner@aborted.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@runner@aborted.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12068/shard-apl6/igt@runner@aborted.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl6/igt@runner@aborted.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl7/igt@runner@aborted.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl8/igt@runner@aborted.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/shard-apl1/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4765]: https://gitlab.freedesktop.org/drm/intel/issues/4765
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
[i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182
[i915#5196]: https://gitlab.freedesktop.org/drm/intel/issues/5196
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5748]: https://gitlab.freedesktop.org/drm/intel/issues/5748
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6576]: https://gitlab.freedesktop.org/drm/intel/issues/6576
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598
[i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6637]: https://gitlab.freedesktop.org/drm/intel/issues/6637
[i915#6714]: https://gitlab.freedesktop.org/drm/intel/issues/6714
[i915#6715]: https://gitlab.freedesktop.org/drm/intel/issues/6715
[i915#6729]: https://gitlab.freedesktop.org/drm/intel/issues/6729
[i915#6732]: https://gitlab.freedesktop.org/drm/intel/issues/6732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6642 -> IGTPW_7731
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12068: f2c3a05d33693ad51996fa7d12d3b2d4b0f372eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7731: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
IGT_6642: c018ce1d1ab8e570f665cf5d58c9802a44d66cc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7731/index.html
[-- Attachment #2: Type: text/html, Size: 60024 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH 2/2][V4] tests/kms_universal_plane: Skip offscreen test for universal API
2022-09-03 17:48 ` [igt-dev] [PATCH 2/2][V4] tests/kms_universal_plane: Skip offscreen test for universal API Alex Hung
@ 2022-09-06 13:50 ` Mark Yacoub
2022-11-11 10:33 ` Ville Syrjälä
1 sibling, 0 replies; 12+ messages in thread
From: Mark Yacoub @ 2022-09-06 13:50 UTC (permalink / raw)
To: Alex Hung; +Cc: igt-dev, markyacoub
On Sat, Sep 3, 2022 at 1:48 PM Alex Hung <alex.hung@amd.com> wrote:
>
> amdgpu driver intentionally rejects plane outside of the screen and thus
> this test is skipped on AMD HW. See more details in kernel commits
> 40d916a2602c and 4abdb72bd8576 which are summarized as below:
>
> "Reject this condition (too small viewport size) at validation time.
> This gives the calling level a chance to handle this gracefully and
> avoid inconsistent behaviors."
>
> Signed-off-by: Alex Hung <alex.hung@amd.com>
Reviewed-by: Mark Yacoub <markyacoub@chromium.org>
> ---
> tests/kms_universal_plane.c | 33 ++++++++++++++++++++-------------
> 1 file changed, 20 insertions(+), 13 deletions(-)
>
> diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
> index 9eab1a57..432f56ba 100644
> --- a/tests/kms_universal_plane.c
> +++ b/tests/kms_universal_plane.c
> @@ -241,17 +241,22 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> igt_plane_set_fb(sprite, &test.red_fb);
> igt_display_commit2(display, COMMIT_LEGACY);
>
> - /* Step 14: Universal API, set primary completely offscreen (CRC 9) */
> - igt_assert(drmModeSetPlane(data->drm_fd, primary->drm_plane->plane_id,
> - output->config.crtc->crtc_id,
> - test.blue_fb.fb_id, 0,
> - 9000, 9000,
> - test.mode->hdisplay,
> - test.mode->vdisplay,
> - IGT_FIXED(0,0), IGT_FIXED(0,0),
> - IGT_FIXED(test.mode->hdisplay,0),
> - IGT_FIXED(test.mode->vdisplay,0)) == 0);
> - igt_pipe_crc_collect_crc(test.pipe_crc, &test.crc_9);
> + /*
> + * Step 14: Universal API, set primary completely offscreen (CRC 9).
> + * Skip on amdgpu which rejects offscreen planes.
> + */
> + if (!is_amdgpu_device(data->drm_fd)) {
> + igt_assert(drmModeSetPlane(data->drm_fd, primary->drm_plane->plane_id,
> + output->config.crtc->crtc_id,
> + test.blue_fb.fb_id, 0,
> + 9000, 9000,
> + test.mode->hdisplay,
> + test.mode->vdisplay,
> + IGT_FIXED(0,0), IGT_FIXED(0,0),
> + IGT_FIXED(test.mode->hdisplay,0),
> + IGT_FIXED(test.mode->vdisplay,0)) == 0);
> + igt_pipe_crc_collect_crc(test.pipe_crc, &test.crc_9);
> + }
>
> /*
> * Step 15: Explicitly disable primary after it's already been
> @@ -289,9 +294,11 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
>
> /*
> * We should be able to move the primary plane completely offscreen
> - * and have it disable successfully.
> + * and have it disable successfully. Skip on amdgpu since crc_9 was
> + * skipped with offscreen planes previously.
> */
> - igt_assert_crc_equal(&test.crc_5, &test.crc_9);
> + if (!is_amdgpu_device(data->drm_fd))
> + igt_assert_crc_equal(&test.crc_5, &test.crc_9);
>
> /*
> * We should be able to explicitly disable an already
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH 2/2][V4] tests/kms_universal_plane: Skip offscreen test for universal API
2022-09-03 17:48 ` [igt-dev] [PATCH 2/2][V4] tests/kms_universal_plane: Skip offscreen test for universal API Alex Hung
2022-09-06 13:50 ` Mark Yacoub
@ 2022-11-11 10:33 ` Ville Syrjälä
1 sibling, 0 replies; 12+ messages in thread
From: Ville Syrjälä @ 2022-11-11 10:33 UTC (permalink / raw)
To: Alex Hung; +Cc: igt-dev, markyacoub
On Sat, Sep 03, 2022 at 11:48:03AM -0600, Alex Hung wrote:
> amdgpu driver intentionally rejects plane outside of the screen and thus
> this test is skipped on AMD HW. See more details in kernel commits
> 40d916a2602c and 4abdb72bd8576 which are summarized as below:
>
> "Reject this condition (too small viewport size) at validation time.
> This gives the calling level a chance to handle this gracefully and
> avoid inconsistent behaviors."
>
> Signed-off-by: Alex Hung <alex.hung@amd.com>
> ---
> tests/kms_universal_plane.c | 33 ++++++++++++++++++++-------------
> 1 file changed, 20 insertions(+), 13 deletions(-)
>
> diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
> index 9eab1a57..432f56ba 100644
> --- a/tests/kms_universal_plane.c
> +++ b/tests/kms_universal_plane.c
> @@ -241,17 +241,22 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> igt_plane_set_fb(sprite, &test.red_fb);
> igt_display_commit2(display, COMMIT_LEGACY);
>
> - /* Step 14: Universal API, set primary completely offscreen (CRC 9) */
> - igt_assert(drmModeSetPlane(data->drm_fd, primary->drm_plane->plane_id,
> - output->config.crtc->crtc_id,
> - test.blue_fb.fb_id, 0,
> - 9000, 9000,
> - test.mode->hdisplay,
> - test.mode->vdisplay,
> - IGT_FIXED(0,0), IGT_FIXED(0,0),
> - IGT_FIXED(test.mode->hdisplay,0),
> - IGT_FIXED(test.mode->vdisplay,0)) == 0);
> - igt_pipe_crc_collect_crc(test.pipe_crc, &test.crc_9);
> + /*
> + * Step 14: Universal API, set primary completely offscreen (CRC 9).
> + * Skip on amdgpu which rejects offscreen planes.
> + */
> + if (!is_amdgpu_device(data->drm_fd)) {
These random checks all over the place aren't really great. Is the test
even testing anything anymore? ... I guess it sort of is since this
"single" test seems to be actually about twenty different tests rolled
into one. Would be nice if this was actually split into proper subtests
and then amdgpu could just skip the ones it can't actually do...
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2022-11-11 10:33 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-03 17:48 [igt-dev] [PATCH 1/2][V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Alex Hung
2022-09-03 17:48 ` [igt-dev] [PATCH 2/2][V4] tests/kms_universal_plane: Skip offscreen test for universal API Alex Hung
2022-09-06 13:50 ` Mark Yacoub
2022-11-11 10:33 ` Ville Syrjälä
2022-09-03 18:34 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices Patchwork
2022-09-03 22:50 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [1/2,V4] tests/kms_universal_plane: Enable gen9_test_pipe for all devices (rev2) Patchwork
2022-09-04 8:06 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-09-04 9:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-09-05 5:35 ` Patchwork
2022-09-05 6:18 ` Patchwork
2022-09-06 6:14 ` Patchwork
2022-09-06 7:01 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox