* [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test
@ 2021-01-24 14:40 Juha-Pekka Heikkila
2021-01-24 15:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Juha-Pekka Heikkila @ 2021-01-24 14:40 UTC (permalink / raw)
To: igt-dev
Different default resolutions will affect test execution, try to normalize
situation by always going to 1080p resolution. If this test will run on
connector which doesn't have 1080p resolution, default resolution will be
used. On gen<11 will be used 480p
v2 (Stan): Use igt functions for modesetting. Change igt_warn to igt_debug
because there's one ICL in intel CI with eDP that would show up warnings
randomly depending which machine run which test.
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
tests/kms_flip_scaled_crc.c | 85 ++++++++++++++++++++-----------------
1 file changed, 45 insertions(+), 40 deletions(-)
diff --git a/tests/kms_flip_scaled_crc.c b/tests/kms_flip_scaled_crc.c
index 93d8031f7..f77484063 100644
--- a/tests/kms_flip_scaled_crc.c
+++ b/tests/kms_flip_scaled_crc.c
@@ -35,6 +35,8 @@ typedef struct {
struct igt_fb small_fb;
struct igt_fb big_fb;
igt_pipe_crc_t *pipe_crc;
+ uint32_t attemptmodewidth;
+ uint32_t attemptmodeheight;
} data_t;
const struct {
@@ -133,8 +135,7 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
{
igt_plane_t *primary;
igt_crc_t small_crc, big_crc;
-
- drmModeModeInfo *mode;
+ drmModeModeInfoPtr modetoset = NULL;
struct drm_event_vblank ev;
int ret;
@@ -142,41 +143,24 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
igt_debug("running on output %s pipe %s\n", output->name,
kmstest_pipe_name(pipe));
+
if (data->big_fb.fb_id == 0) {
- mode = igt_output_get_mode(output);
-
- // big fb will be 4k unless running on older than ICL
- if (data->gen < 11) {
- setup_fb(data, &data->small_fb,
- min(mode->hdisplay, 640),
- min(mode->vdisplay, 480),
- flip_scenario_test[index].firstformat,
- flip_scenario_test[index].firstmodifier);
-
- setup_fb(data, &data->big_fb,
- 1280, 960,
- flip_scenario_test[index].secondformat,
- flip_scenario_test[index].secondmodifier);
- igt_debug("small fb %dx%d\n", data->small_fb.width,
- data->small_fb.height);
- igt_debug("big fb %dx%d\n", data->big_fb.width,
- data->big_fb.height);
- } else {
- setup_fb(data, &data->small_fb,
- min(mode->hdisplay, 1920),
- min(mode->vdisplay, 1080),
- flip_scenario_test[index].firstformat,
- flip_scenario_test[index].firstmodifier);
-
- setup_fb(data, &data->big_fb,
- 3840, 2160,
- flip_scenario_test[index].secondformat,
- flip_scenario_test[index].secondmodifier);
- igt_debug("small fb %dx%d\n", data->small_fb.width,
- data->small_fb.height);
- igt_debug("big fb %dx%d\n", data->big_fb.width,
- data->big_fb.height);
- }
+ setup_fb(data, &data->small_fb,
+ data->attemptmodewidth,
+ data->attemptmodeheight,
+ flip_scenario_test[index].firstformat,
+ flip_scenario_test[index].firstmodifier);
+
+ setup_fb(data, &data->big_fb,
+ data->attemptmodewidth * 2,
+ data->attemptmodeheight * 2,
+ flip_scenario_test[index].secondformat,
+ flip_scenario_test[index].secondmodifier);
+
+ igt_debug("small fb %dx%d\n", data->small_fb.width,
+ data->small_fb.height);
+ igt_debug("big fb %dx%d\n", data->big_fb.width,
+ data->big_fb.height);
}
igt_output_set_pipe(output, pipe);
@@ -186,13 +170,26 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
NULL);
data->pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe,
INTEL_PIPE_CRC_SOURCE_AUTO);
- igt_pipe_crc_start(data->pipe_crc);
+
+ for (int i = 0; i < output->config.connector->count_modes; i++) {
+ if (output->config.connector->modes[i].hdisplay == data->attemptmodewidth &&
+ output->config.connector->modes[i].vdisplay == data->attemptmodeheight) {
+ modetoset = &output->config.connector->modes[i];
+ break;
+ }
+ }
+
+ if (!modetoset)
+ igt_debug("%dp mode was not found from connector, will continue with default. This may cause cdclk to fail this test.\n",
+ data->attemptmodeheight);
+ else
+ igt_output_override_mode(output, modetoset);
igt_plane_set_position(primary, 0, 0);
igt_plane_set_fb(primary, &data->small_fb);
+ igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
- igt_display_commit_atomic(&data->display,
- DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ igt_pipe_crc_start(data->pipe_crc);
igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &small_crc);
igt_plane_set_fb(primary, &data->big_fb);
@@ -203,7 +200,7 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
DRM_MODE_PAGE_FLIP_EVENT, NULL);
igt_require_f(ret != -ERANGE,
- "Platform scaling limits exceeded, skipping.");
+ "Platform scaling limits exceeded, skipping.\n");
igt_assert_eq(ret, 0);
igt_assert(read(data->drm_fd, &ev, sizeof(ev)) == sizeof(ev));
@@ -230,6 +227,14 @@ igt_main
igt_require(data.display.is_atomic);
igt_require_pipe_crc(data.drm_fd);
kmstest_set_vt_graphics_mode();
+
+ if (data.gen < 11) {
+ data.attemptmodewidth = 640;
+ data.attemptmodeheight = 480;
+ } else {
+ data.attemptmodewidth = 1920;
+ data.attemptmodeheight = 1080;
+ }
}
for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
--
2.28.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 9+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2)
2021-01-24 14:40 [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test Juha-Pekka Heikkila
@ 2021-01-24 15:16 ` Patchwork
2021-01-24 17:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2021-01-24 15:16 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 2458 bytes --]
== Series Details ==
Series: tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2)
URL : https://patchwork.freedesktop.org/series/86166/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9675 -> IGTPW_5426
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
Known issues
------------
Here are the changes found in IGTPW_5426 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@read:
- fi-tgl-y: [PASS][1] -> [DMESG-WARN][2] ([i915#402]) +2 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/fi-tgl-y/igt@fbdev@read.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/fi-tgl-y/igt@fbdev@read.html
* igt@kms_chamelium@dp-crc-fast:
- fi-kbl-7500u: [PASS][3] -> [FAIL][4] ([i915#1161] / [i915#262])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
#### Possible fixes ####
* igt@prime_self_import@basic-with_one_bo_two_files:
- fi-tgl-y: [DMESG-WARN][5] ([i915#402]) -> [PASS][6] +2 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html
[i915#1161]: https://gitlab.freedesktop.org/drm/intel/issues/1161
[i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
Participating hosts (41 -> 36)
------------------------------
Missing (5): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-dg1-1 fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5968 -> IGTPW_5426
CI-20190529: 20190529
CI_DRM_9675: f84d1efce492ef0f46cf4fa1bf01b17ce1627fe4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5426: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
IGT_5968: 267fa33c0947fbbb642098098ff6e5902f9a3d94 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
[-- Attachment #1.2: Type: text/html, Size: 3172 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2)
2021-01-24 14:40 [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test Juha-Pekka Heikkila
2021-01-24 15:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2) Patchwork
@ 2021-01-24 17:19 ` Patchwork
2021-01-24 20:35 ` Juha-Pekka Heikkilä
2021-01-25 2:23 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
2021-01-26 11:28 ` [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test Lisovskiy, Stanislav
3 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2021-01-24 17:19 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 28509 bytes --]
== Series Details ==
Series: tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2)
URL : https://patchwork.freedesktop.org/series/86166/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_9675_full -> IGTPW_5426_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_5426_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5426_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_5426/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_5426_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_hangman@engine-hang@rcs0:
- shard-tglb: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb5/igt@i915_hangman@engine-hang@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@i915_hangman@engine-hang@rcs0.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@sysfs_clients@fair-0}:
- shard-tglb: NOTRUN -> [SKIP][3] +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb8/igt@sysfs_clients@fair-0.html
* {igt@sysfs_clients@fair-7}:
- shard-iclb: NOTRUN -> [SKIP][4] +2 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@sysfs_clients@fair-7.html
Known issues
------------
Here are the changes found in IGTPW_5426_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- shard-hsw: NOTRUN -> [WARN][5] ([i915#2283])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@core_hotunplug@unbind-rebind.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-tglb: NOTRUN -> [SKIP][6] ([fdo#109314])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gem_ctx_param@set-priority-not-supported.html
- shard-iclb: NOTRUN -> [SKIP][7] ([fdo#109314])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@idempotent:
- shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1099]) +1 similar issue
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb7/igt@gem_ctx_persistence@idempotent.html
- shard-hsw: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@gem_ctx_persistence@idempotent.html
* igt@gem_ctx_sseu@engines:
- shard-tglb: NOTRUN -> [SKIP][10] ([i915#280])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-glk: [PASS][11] -> [FAIL][12] ([i915#2842])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk1/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_media_vme:
- shard-tglb: NOTRUN -> [SKIP][13] ([i915#284])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@gem_media_vme.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-iclb: NOTRUN -> [SKIP][14] ([i915#768]) +1 similar issue
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglb: NOTRUN -> [SKIP][15] ([fdo#110542]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gem_userptr_blits@coherency-unsync.html
- shard-iclb: NOTRUN -> [SKIP][16] ([fdo#109290]) +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_userptr_blits@coherency-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-tglb: NOTRUN -> [SKIP][17] ([fdo#109289]) +2 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglb: NOTRUN -> [SKIP][18] ([fdo#112306]) +2 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb1/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@unaligned-access:
- shard-iclb: NOTRUN -> [SKIP][19] ([fdo#112306]) +2 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-iclb: [PASS][20] -> [WARN][21] ([i915#2681] / [i915#2684])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@i915_pm_rc6_residency@rc6-fence.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][22] ([fdo#111614])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_big_fb@linear-16bpp-rotate-270.html
- shard-iclb: NOTRUN -> [SKIP][23] ([fdo#110725] / [fdo#111614])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_chamelium@hdmi-hpd-storm:
- shard-kbl: NOTRUN -> [SKIP][24] ([fdo#109271] / [fdo#111827]) +10 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl3/igt@kms_chamelium@hdmi-hpd-storm.html
- shard-hsw: NOTRUN -> [SKIP][25] ([fdo#109271] / [fdo#111827]) +6 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw6/igt@kms_chamelium@hdmi-hpd-storm.html
* igt@kms_chamelium@vga-hpd-with-enabled-mode:
- shard-iclb: NOTRUN -> [SKIP][26] ([fdo#109284] / [fdo#111827]) +7 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb6/igt@kms_chamelium@vga-hpd-with-enabled-mode.html
* igt@kms_color@pipe-b-legacy-gamma-reset:
- shard-apl: [PASS][27] -> [FAIL][28] ([i915#2964])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl1/igt@kms_color@pipe-b-legacy-gamma-reset.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl1/igt@kms_color@pipe-b-legacy-gamma-reset.html
- shard-kbl: [PASS][29] -> [FAIL][30] ([i915#2964])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma-reset.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma-reset.html
* igt@kms_color@pipe-d-ctm-green-to-red:
- shard-iclb: NOTRUN -> [SKIP][31] ([fdo#109278] / [i915#1149]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_color@pipe-d-ctm-green-to-red.html
* igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
- shard-snb: NOTRUN -> [SKIP][32] ([fdo#109271] / [fdo#111827]) +6 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
- shard-glk: NOTRUN -> [SKIP][33] ([fdo#109271] / [fdo#111827]) +8 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
- shard-apl: NOTRUN -> [SKIP][34] ([fdo#109271] / [fdo#111827]) +8 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
* igt@kms_color_chamelium@pipe-d-ctm-blue-to-red:
- shard-tglb: NOTRUN -> [SKIP][35] ([fdo#109284] / [fdo#111827]) +7 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html
- shard-iclb: NOTRUN -> [SKIP][36] ([fdo#109278] / [fdo#109284] / [fdo#111827])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html
* igt@kms_content_protection@content_type_change:
- shard-iclb: NOTRUN -> [SKIP][37] ([fdo#109300] / [fdo#111066]) +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_content_protection@content_type_change.html
- shard-tglb: NOTRUN -> [SKIP][38] ([fdo#111828]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@kms_content_protection@content_type_change.html
* igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
- shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109278] / [fdo#109279]) +3 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html
* igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:
- shard-tglb: NOTRUN -> [SKIP][40] ([fdo#109279]) +3 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html
* igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque:
- shard-apl: [PASS][41] -> [FAIL][42] ([i915#54])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl4/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html
- shard-kbl: [PASS][43] -> [FAIL][44] ([i915#54])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
- shard-snb: NOTRUN -> [SKIP][45] ([fdo#109271]) +105 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb4/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge:
- shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109278]) +14 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb1/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-hsw: [PASS][47] -> [FAIL][48] ([i915#96])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109274] / [fdo#109278]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@pipe-d-torture-bo:
- shard-kbl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#533]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl4/igt@kms_cursor_legacy@pipe-d-torture-bo.html
- shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#533]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html
- shard-glk: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#533]) +1 similar issue
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk9/igt@kms_cursor_legacy@pipe-d-torture-bo.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-tglb: [PASS][53] -> [FAIL][54] ([i915#2598])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
- shard-iclb: [PASS][55] -> [FAIL][56] ([i915#79])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_tiling@flip-yf-tiled:
- shard-tglb: NOTRUN -> [SKIP][57] ([fdo#111615]) +3 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@kms_flip_tiling@flip-yf-tiled.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109280]) +19 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-apl: NOTRUN -> [SKIP][59] ([fdo#109271]) +83 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-glk: NOTRUN -> [FAIL][60] ([i915#49])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
- shard-tglb: NOTRUN -> [SKIP][61] ([fdo#111825]) +24 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271]) +69 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-hsw: NOTRUN -> [SKIP][63] ([fdo#109271]) +91 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109274]) +3 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
- shard-tglb: NOTRUN -> [SKIP][65] ([i915#2920]) +1 similar issue
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html
- shard-apl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#658]) +2 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html
- shard-glk: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#658]) +2 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
- shard-iclb: NOTRUN -> [SKIP][68] ([i915#658]) +2 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html
- shard-kbl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#658]) +2 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109441]) +1 similar issue
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-iclb: [PASS][71] -> [SKIP][72] ([fdo#109441]) +2 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_universal_plane@disable-primary-vs-flip-pipe-d:
- shard-kbl: NOTRUN -> [SKIP][73] ([fdo#109271]) +122 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-d.html
* igt@nouveau_crc@pipe-a-ctx-flip-detection:
- shard-iclb: NOTRUN -> [SKIP][74] ([i915#2530]) +1 similar issue
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@nouveau_crc@pipe-a-ctx-flip-detection.html
* igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame:
- shard-tglb: NOTRUN -> [SKIP][75] ([i915#2530]) +1 similar issue
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb1/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-iclb: NOTRUN -> [SKIP][76] ([fdo#109289]) +1 similar issue
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@perf@unprivileged-single-ctx-counters.html
* igt@prime_nv_test@i915_import_gtt_mmap:
- shard-tglb: NOTRUN -> [SKIP][77] ([fdo#109291])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@prime_nv_test@i915_import_gtt_mmap.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-iclb: [FAIL][78] ([i915#2842]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglb: [FAIL][80] ([i915#2842]) -> [PASS][81] +1 similar issue
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb7/igt@gem_exec_fair@basic-pace@bcs0.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-kbl: [FAIL][82] ([i915#2842]) -> [PASS][83] +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [FAIL][84] ([i915#2842]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html
- shard-iclb: [FAIL][86] ([i915#2849]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_whisper@basic-forked:
- shard-glk: [DMESG-WARN][88] ([i915#118] / [i915#95]) -> [PASS][89] +1 similar issue
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk1/igt@gem_exec_whisper@basic-forked.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk7/igt@gem_exec_whisper@basic-forked.html
* igt@gem_huc_copy@huc-copy:
- shard-tglb: [SKIP][90] ([i915#2190]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb6/igt@gem_huc_copy@huc-copy.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@gem_huc_copy@huc-copy.html
* igt@kms_color@pipe-c-legacy-gamma-reset:
- shard-kbl: [FAIL][92] ([i915#2964]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl2/igt@kms_color@pipe-c-legacy-gamma-reset.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_color@pipe-c-legacy-gamma-reset.html
- shard-apl: [FAIL][94] ([i915#2964]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl7/igt@kms_color@pipe-c-legacy-gamma-reset.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl3/igt@kms_color@pipe-c-legacy-gamma-reset.html
- shard-glk: [FAIL][96] ([i915#2964]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk2/igt@kms_color@pipe-c-legacy-gamma-reset.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk6/igt@kms_color@pipe-c-legacy-gamma-reset.html
- shard-hsw: [FAIL][98] ([i915#2964]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw2/igt@kms_color@pipe-c-legacy-gamma-reset.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-hsw: [FAIL][100] ([i915#2370]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_psr2_su@page_flip:
- shard-iclb: [SKIP][102] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb1/igt@kms_psr2_su@page_flip.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr2_su@page_flip.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: [SKIP][104] ([fdo#109441]) -> [PASS][105] +2 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb6/igt@kms_psr@psr2_primary_page_flip.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
#### Warnings ####
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-iclb: [SKIP][106] ([i915#588]) -> [SKIP][107] ([i915#658])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-iclb: [WARN][108] ([i915#2684]) -> [WARN][109] ([i915#1804] / [i915#2684])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
- shard-iclb: [SKIP][110] ([i915#658]) -> [SKIP][111] ([i915#2920])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
- shard-iclb: [SKIP][112] ([i915#2920]) -> [SKIP][113] ([i915#658]) +2 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
[fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#111828]: https://bugs.freedesktop.org/show_bug.cgi?id=111828
[fdo#112306]: https://bugs.freedesktop.org/show_bug.cgi?id=112306
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
[i915#2370]: https://gitlab.freedesktop.org/drm/intel/issues/2370
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2964]: https://gitlab.freedesktop.org/drm/intel/issues/2964
[i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
[i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5968 -> IGTPW_5426
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_9675: f84d1efce492ef0f46cf4fa1bf01b17ce1627fe4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5426: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
IGT_5968: 267fa33c0947fbbb642098098ff6e5902f9a3d94 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
[-- Attachment #1.2: Type: text/html, Size: 35253 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2)
2021-01-24 17:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-01-24 20:35 ` Juha-Pekka Heikkilä
2021-01-25 2:30 ` Vudum, Lakshminarayana
0 siblings, 1 reply; 9+ messages in thread
From: Juha-Pekka Heikkilä @ 2021-01-24 20:35 UTC (permalink / raw)
To: igt-dev, Vudum, Lakshminarayana
Well, I didn't get lucky with the new patch. Here is again unrelated
failure, I patch only kms_flip_scaled_crc test and nothing relating to
i915_hangman.
/Juha-Pekka
Patchwork kirjoitti 24.1.2021 klo 19.19:
> *Patch Details*
> *Series:* tests/kms_flip_scaled_crc: try to set mode to 1080p during
> test (rev2)
> *URL:* https://patchwork.freedesktop.org/series/86166/
> *State:* failure
> *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
>
>
> CI Bug Log - changes from CI_DRM_9675_full -> IGTPW_5426_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with IGTPW_5426_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_5426_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_5426/index.html
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_5426_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> * igt@i915_hangman@engine-hang@rcs0:
> o shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb5/igt@i915_hangman@engine-hang@rcs0.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@i915_hangman@engine-hang@rcs0.html>
>
>
> Suppressed
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> *
>
> {igt@sysfs_clients@fair-0}:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb8/igt@sysfs_clients@fair-0.html>
> +2 similar issues
> *
>
> {igt@sysfs_clients@fair-7}:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@sysfs_clients@fair-7.html>
> +2 similar issues
>
>
> Known issues
>
> Here are the changes found in IGTPW_5426_full that come from known issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@core_hotunplug@unbind-rebind:
>
> o shard-hsw: NOTRUN -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@core_hotunplug@unbind-rebind.html>
> (i915#2283 <https://gitlab.freedesktop.org/drm/intel/issues/2283>)
> *
>
> igt@gem_ctx_param@set-priority-not-supported:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gem_ctx_param@set-priority-not-supported.html>
> (fdo#109314 <https://bugs.freedesktop.org/show_bug.cgi?id=109314>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_ctx_param@set-priority-not-supported.html>
> (fdo#109314 <https://bugs.freedesktop.org/show_bug.cgi?id=109314>)
>
> *
>
> igt@gem_ctx_persistence@idempotent:
>
> o
>
> shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb7/igt@gem_ctx_persistence@idempotent.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#1099
> <https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1
> similar issue
>
> o
>
> shard-hsw: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@gem_ctx_persistence@idempotent.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#1099
> <https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1
> similar issue
>
> *
>
> igt@gem_ctx_sseu@engines:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@gem_ctx_sseu@engines.html>
> (i915#280 <https://gitlab.freedesktop.org/drm/intel/issues/280>)
> *
>
> igt@gem_exec_fair@basic-none-vip@rcs0:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk1/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> *
>
> igt@gem_media_vme:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@gem_media_vme.html>
> (i915#284 <https://gitlab.freedesktop.org/drm/intel/issues/284>)
> *
>
> igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html>
> (i915#768 <https://gitlab.freedesktop.org/drm/intel/issues/768>)
> +1 similar issue
> *
>
> igt@gem_userptr_blits@coherency-unsync:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gem_userptr_blits@coherency-unsync.html>
> (fdo#110542
> <https://bugs.freedesktop.org/show_bug.cgi?id=110542>) +1
> similar issue
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_userptr_blits@coherency-unsync.html>
> (fdo#109290
> <https://bugs.freedesktop.org/show_bug.cgi?id=109290>) +1
> similar issue
>
> *
>
> igt@gen3_render_tiledy_blits:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gen3_render_tiledy_blits.html>
> (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +2
> similar issues
> *
>
> igt@gen9_exec_parse@bb-start-out:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb1/igt@gen9_exec_parse@bb-start-out.html>
> (fdo#112306
> <https://bugs.freedesktop.org/show_bug.cgi?id=112306>) +2
> similar issues
> *
>
> igt@gen9_exec_parse@unaligned-access:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@gen9_exec_parse@unaligned-access.html>
> (fdo#112306
> <https://bugs.freedesktop.org/show_bug.cgi?id=112306>) +2
> similar issues
> *
>
> igt@i915_pm_rc6_residency@rc6-fence:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@i915_pm_rc6_residency@rc6-fence.html>
> -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@i915_pm_rc6_residency@rc6-fence.html>
> (i915#2681
> <https://gitlab.freedesktop.org/drm/intel/issues/2681> /
> i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>)
> *
>
> igt@kms_big_fb@linear-16bpp-rotate-270:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_big_fb@linear-16bpp-rotate-270.html>
> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb6/igt@kms_big_fb@linear-16bpp-rotate-270.html>
> (fdo#110725
> <https://bugs.freedesktop.org/show_bug.cgi?id=110725> /
> fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
>
> *
>
> igt@kms_chamelium@hdmi-hpd-storm:
>
> o
>
> shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl3/igt@kms_chamelium@hdmi-hpd-storm.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +10
> similar issues
>
> o
>
> shard-hsw: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw6/igt@kms_chamelium@hdmi-hpd-storm.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6
> similar issues
>
> *
>
> igt@kms_chamelium@vga-hpd-with-enabled-mode:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb6/igt@kms_chamelium@vga-hpd-with-enabled-mode.html>
> (fdo#109284
> <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +7
> similar issues
> *
>
> igt@kms_color@pipe-b-legacy-gamma-reset:
>
> o
>
> shard-apl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl1/igt@kms_color@pipe-b-legacy-gamma-reset.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl1/igt@kms_color@pipe-b-legacy-gamma-reset.html>
> (i915#2964 <https://gitlab.freedesktop.org/drm/intel/issues/2964>)
>
> o
>
> shard-kbl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma-reset.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma-reset.html>
> (i915#2964 <https://gitlab.freedesktop.org/drm/intel/issues/2964>)
>
> *
>
> igt@kms_color@pipe-d-ctm-green-to-red:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_color@pipe-d-ctm-green-to-red.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
> i915#1149
> <https://gitlab.freedesktop.org/drm/intel/issues/1149>) +1
> similar issue
> *
>
> igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
>
> o
>
> shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6
> similar issues
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8
> similar issues
>
> o
>
> shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8
> similar issues
>
> *
>
> igt@kms_color_chamelium@pipe-d-ctm-blue-to-red:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html>
> (fdo#109284
> <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +7
> similar issues
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
> fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>
> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
>
> *
>
> igt@kms_content_protection@content_type_change:
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_content_protection@content_type_change.html>
> (fdo#109300
> <https://bugs.freedesktop.org/show_bug.cgi?id=109300> /
> fdo#111066
> <https://bugs.freedesktop.org/show_bug.cgi?id=111066>) +1
> similar issue
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@kms_content_protection@content_type_change.html>
> (fdo#111828
> <https://bugs.freedesktop.org/show_bug.cgi?id=111828>) +1
> similar issue
>
> *
>
> igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
> fdo#109279
> <https://bugs.freedesktop.org/show_bug.cgi?id=109279>) +3
> similar issues
> *
>
> igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html>
> (fdo#109279
> <https://bugs.freedesktop.org/show_bug.cgi?id=109279>) +3
> similar issues
> *
>
> igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque:
>
> o
>
> shard-apl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl4/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html>
> (i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>)
>
> o
>
> shard-kbl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html>
> (i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>)
>
> *
>
> igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb4/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +105
> similar issues
> *
>
> igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb1/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +14
> similar issues
> *
>
> igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
>
> o shard-hsw: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html>
> (i915#96 <https://gitlab.freedesktop.org/drm/intel/issues/96>)
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html>
> (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
> fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +1
> similar issue
> *
>
> igt@kms_cursor_legacy@pipe-d-torture-bo:
>
> o
>
> shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl4/igt@kms_cursor_legacy@pipe-d-torture-bo.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533
> <https://gitlab.freedesktop.org/drm/intel/issues/533>) +1
> similar issue
>
> o
>
> shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533
> <https://gitlab.freedesktop.org/drm/intel/issues/533>) +1
> similar issue
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk9/igt@kms_cursor_legacy@pipe-d-torture-bo.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533
> <https://gitlab.freedesktop.org/drm/intel/issues/533>) +1
> similar issue
>
> *
>
> igt@kms_flip@flip-vs-expired-vblank@a-edp1:
>
> o
>
> shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
> (i915#2598 <https://gitlab.freedesktop.org/drm/intel/issues/2598>)
>
> o
>
> shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>
> *
>
> igt@kms_flip_tiling@flip-yf-tiled:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@kms_flip_tiling@flip-yf-tiled.html>
> (fdo#111615
> <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +3
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html>
> (fdo#109280
> <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +19
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +83
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html>
> (i915#49 <https://gitlab.freedesktop.org/drm/intel/issues/49>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +24
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +69
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
>
> o shard-hsw: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +91
> similar issues
> *
>
> igt@kms_plane_scaling@2x-scaler-multi-pipe:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html>
> (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +3
> similar issues
> *
>
> igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> (i915#2920
> <https://gitlab.freedesktop.org/drm/intel/issues/2920>) +1
> similar issue
>
> o
>
> shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) +2
> similar issues
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) +2
> similar issues
>
> *
>
> igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> +2 similar issues
>
> o
>
> shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) +2
> similar issues
>
> *
>
> igt@kms_psr@psr2_cursor_blt:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_psr@psr2_cursor_blt.html>
> (fdo#109441
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1
> similar issue
> *
>
> igt@kms_psr@psr2_cursor_mmap_cpu:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_cpu.html>
> (fdo#109441
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +2
> similar issues
> *
>
> igt@kms_universal_plane@disable-primary-vs-flip-pipe-d:
>
> o shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-d.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +122
> similar issues
> *
>
> igt@nouveau_crc@pipe-a-ctx-flip-detection:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@nouveau_crc@pipe-a-ctx-flip-detection.html>
> (i915#2530
> <https://gitlab.freedesktop.org/drm/intel/issues/2530>) +1
> similar issue
> *
>
> igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb1/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html>
> (i915#2530
> <https://gitlab.freedesktop.org/drm/intel/issues/2530>) +1
> similar issue
> *
>
> igt@perf@unprivileged-single-ctx-counters:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@perf@unprivileged-single-ctx-counters.html>
> (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1
> similar issue
> *
>
> igt@prime_nv_test@i915_import_gtt_mmap:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@prime_nv_test@i915_import_gtt_mmap.html>
> (fdo#109291 <https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
>
>
> Possible fixes
>
> *
>
> igt@gem_exec_fair@basic-none-share@rcs0:
>
> o shard-iclb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_exec_fair@basic-none-share@rcs0.html>
> *
>
> igt@gem_exec_fair@basic-pace@bcs0:
>
> o shard-tglb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb7/igt@gem_exec_fair@basic-pace@bcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@gem_exec_fair@basic-pace@bcs0.html>
> +1 similar issue
> *
>
> igt@gem_exec_fair@basic-pace@vcs1:
>
> o shard-kbl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html>
> +1 similar issue
> *
>
> igt@gem_exec_fair@basic-throttle@rcs0:
>
> o
>
> shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html>
>
> o
>
> shard-iclb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html>
> (i915#2849
> <https://gitlab.freedesktop.org/drm/intel/issues/2849>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html>
>
> *
>
> igt@gem_exec_whisper@basic-forked:
>
> o shard-glk: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk1/igt@gem_exec_whisper@basic-forked.html>
> (i915#118 <https://gitlab.freedesktop.org/drm/intel/issues/118>
> / i915#95 <https://gitlab.freedesktop.org/drm/intel/issues/95>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk7/igt@gem_exec_whisper@basic-forked.html>
> +1 similar issue
> *
>
> igt@gem_huc_copy@huc-copy:
>
> o shard-tglb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb6/igt@gem_huc_copy@huc-copy.html>
> (i915#2190
> <https://gitlab.freedesktop.org/drm/intel/issues/2190>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@gem_huc_copy@huc-copy.html>
> *
>
> igt@kms_color@pipe-c-legacy-gamma-reset:
>
> o
>
> shard-kbl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl2/igt@kms_color@pipe-c-legacy-gamma-reset.html>
> (i915#2964
> <https://gitlab.freedesktop.org/drm/intel/issues/2964>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_color@pipe-c-legacy-gamma-reset.html>
>
> o
>
> shard-apl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl7/igt@kms_color@pipe-c-legacy-gamma-reset.html>
> (i915#2964
> <https://gitlab.freedesktop.org/drm/intel/issues/2964>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl3/igt@kms_color@pipe-c-legacy-gamma-reset.html>
>
> o
>
> shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk2/igt@kms_color@pipe-c-legacy-gamma-reset.html>
> (i915#2964
> <https://gitlab.freedesktop.org/drm/intel/issues/2964>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk6/igt@kms_color@pipe-c-legacy-gamma-reset.html>
>
> o
>
> shard-hsw: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw2/igt@kms_color@pipe-c-legacy-gamma-reset.html>
> (i915#2964
> <https://gitlab.freedesktop.org/drm/intel/issues/2964>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html>
>
> *
>
> igt@kms_cursor_legacy@cursor-vs-flip-toggle:
>
> o shard-hsw: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html>
> (i915#2370
> <https://gitlab.freedesktop.org/drm/intel/issues/2370>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html>
> *
>
> igt@kms_psr2_su@page_flip:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb1/igt@kms_psr2_su@page_flip.html>
> (fdo#109642
> <https://bugs.freedesktop.org/show_bug.cgi?id=109642> /
> fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068>
> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr2_su@page_flip.html>
> *
>
> igt@kms_psr@psr2_primary_page_flip:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb6/igt@kms_psr@psr2_primary_page_flip.html>
> (fdo#109441
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html>
> +2 similar issues
>
>
> Warnings
>
> *
>
> igt@i915_pm_dc@dc3co-vpb-simulation:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html>
> (i915#588 <https://gitlab.freedesktop.org/drm/intel/issues/588>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> *
>
> igt@i915_pm_rc6_residency@rc6-idle:
>
> o shard-iclb: WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html>
> (i915#2684
> <https://gitlab.freedesktop.org/drm/intel/issues/2684>) -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html>
> (i915#1804
> <https://gitlab.freedesktop.org/drm/intel/issues/1804> /
> i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>)
> *
>
> igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html>
> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
> *
>
> igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> (i915#2920
> <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> +2 similar issues
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>
> Participating hosts (10 -> 8)
>
> Missing (2): pig-skl-6260u pig-glk-j5005
>
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_5968 -> IGTPW_5426
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_9675: f84d1efce492ef0f46cf4fa1bf01b17ce1627fe4 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_5426: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
> IGT_5968: 267fa33c0947fbbb642098098ff6e5902f9a3d94 @
> git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2)
2021-01-24 20:35 ` Juha-Pekka Heikkilä
@ 2021-01-25 2:30 ` Vudum, Lakshminarayana
0 siblings, 0 replies; 9+ messages in thread
From: Vudum, Lakshminarayana @ 2021-01-25 2:30 UTC (permalink / raw)
To: Juha-Pekka Heikkilä, igt-dev@lists.freedesktop.org
Re-reported.
-----Original Message-----
From: Juha-Pekka Heikkilä <juhapekka.heikkila@gmail.com>
Sent: Sunday, January 24, 2021 12:36 PM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2)
Well, I didn't get lucky with the new patch. Here is again unrelated failure, I patch only kms_flip_scaled_crc test and nothing relating to i915_hangman.
/Juha-Pekka
Patchwork kirjoitti 24.1.2021 klo 19.19:
> *Patch Details*
> *Series:* tests/kms_flip_scaled_crc: try to set mode to 1080p during
> test (rev2)
> *URL:* https://patchwork.freedesktop.org/series/86166/
> *State:* failure
> *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
>
>
> CI Bug Log - changes from CI_DRM_9675_full -> IGTPW_5426_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with IGTPW_5426_full absolutely need to
> be verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_5426_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_5426/index.html
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_5426_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> * igt@i915_hangman@engine-hang@rcs0:
> o shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb5/igt@i915_hangman@engine-hang@rcs0.html>
> -> INCOMPLETE
>
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@i
> 915_hangman@engine-hang@rcs0.html>
>
>
> Suppressed
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> *
>
> {igt@sysfs_clients@fair-0}:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb8/igt@sysfs_clients@fair-0.html>
> +2 similar issues
> *
>
> {igt@sysfs_clients@fair-7}:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@sysfs_clients@fair-7.html>
> +2 similar issues
>
>
> Known issues
>
> Here are the changes found in IGTPW_5426_full that come from known issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@core_hotunplug@unbind-rebind:
>
> o shard-hsw: NOTRUN -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@core_hotunplug@unbind-rebind.html>
> (i915#2283 <https://gitlab.freedesktop.org/drm/intel/issues/2283>)
> *
>
> igt@gem_ctx_param@set-priority-not-supported:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gem_ctx_param@set-priority-not-supported.html>
> (fdo#109314
> <https://bugs.freedesktop.org/show_bug.cgi?id=109314>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_ctx_param@set-priority-not-supported.html>
> (fdo#109314
> <https://bugs.freedesktop.org/show_bug.cgi?id=109314>)
>
> *
>
> igt@gem_ctx_persistence@idempotent:
>
> o
>
> shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb7/igt@gem_ctx_persistence@idempotent.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#1099
> <https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1
> similar issue
>
> o
>
> shard-hsw: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@gem_ctx_persistence@idempotent.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#1099
> <https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1
> similar issue
>
> *
>
> igt@gem_ctx_sseu@engines:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@gem_ctx_sseu@engines.html>
> (i915#280 <https://gitlab.freedesktop.org/drm/intel/issues/280>)
> *
>
> igt@gem_exec_fair@basic-none-vip@rcs0:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk1/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> *
>
> igt@gem_media_vme:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@gem_media_vme.html>
> (i915#284 <https://gitlab.freedesktop.org/drm/intel/issues/284>)
> *
>
> igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html>
> (i915#768 <https://gitlab.freedesktop.org/drm/intel/issues/768>)
> +1 similar issue
> *
>
> igt@gem_userptr_blits@coherency-unsync:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gem_userptr_blits@coherency-unsync.html>
> (fdo#110542
> <https://bugs.freedesktop.org/show_bug.cgi?id=110542>) +1
> similar issue
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_userptr_blits@coherency-unsync.html>
> (fdo#109290
> <https://bugs.freedesktop.org/show_bug.cgi?id=109290>) +1
> similar issue
>
> *
>
> igt@gen3_render_tiledy_blits:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gen3_render_tiledy_blits.html>
> (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +2
> similar issues
> *
>
> igt@gen9_exec_parse@bb-start-out:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb1/igt@gen9_exec_parse@bb-start-out.html>
> (fdo#112306
> <https://bugs.freedesktop.org/show_bug.cgi?id=112306>) +2
> similar issues
> *
>
> igt@gen9_exec_parse@unaligned-access:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@gen9_exec_parse@unaligned-access.html>
> (fdo#112306
> <https://bugs.freedesktop.org/show_bug.cgi?id=112306>) +2
> similar issues
> *
>
> igt@i915_pm_rc6_residency@rc6-fence:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@i915_pm_rc6_residency@rc6-fence.html>
> -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@i915_pm_rc6_residency@rc6-fence.html>
> (i915#2681
> <https://gitlab.freedesktop.org/drm/intel/issues/2681> /
> i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>)
> *
>
> igt@kms_big_fb@linear-16bpp-rotate-270:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_big_fb@linear-16bpp-rotate-270.html>
> (fdo#111614
> <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb6/igt@kms_big_fb@linear-16bpp-rotate-270.html>
> (fdo#110725
> <https://bugs.freedesktop.org/show_bug.cgi?id=110725> /
> fdo#111614
> <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
>
> *
>
> igt@kms_chamelium@hdmi-hpd-storm:
>
> o
>
> shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl3/igt@kms_chamelium@hdmi-hpd-storm.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +10
> similar issues
>
> o
>
> shard-hsw: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw6/igt@kms_chamelium@hdmi-hpd-storm.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6
> similar issues
>
> *
>
> igt@kms_chamelium@vga-hpd-with-enabled-mode:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb6/igt@kms_chamelium@vga-hpd-with-enabled-mode.html>
> (fdo#109284
> <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +7
> similar issues
> *
>
> igt@kms_color@pipe-b-legacy-gamma-reset:
>
> o
>
> shard-apl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl1/igt@kms_color@pipe-b-legacy-gamma-reset.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl1/igt@kms_color@pipe-b-legacy-gamma-reset.html>
> (i915#2964
> <https://gitlab.freedesktop.org/drm/intel/issues/2964>)
>
> o
>
> shard-kbl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma-reset.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma-reset.html>
> (i915#2964
> <https://gitlab.freedesktop.org/drm/intel/issues/2964>)
>
> *
>
> igt@kms_color@pipe-d-ctm-green-to-red:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_color@pipe-d-ctm-green-to-red.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
> i915#1149
> <https://gitlab.freedesktop.org/drm/intel/issues/1149>) +1
> similar issue
> *
>
> igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
>
> o
>
> shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6
> similar issues
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8
> similar issues
>
> o
>
> shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8
> similar issues
>
> *
>
> igt@kms_color_chamelium@pipe-d-ctm-blue-to-red:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html>
> (fdo#109284
> <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +7
> similar issues
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
> fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>
> / fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
>
> *
>
> igt@kms_content_protection@content_type_change:
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_content_protection@content_type_change.html>
> (fdo#109300
> <https://bugs.freedesktop.org/show_bug.cgi?id=109300> /
> fdo#111066
> <https://bugs.freedesktop.org/show_bug.cgi?id=111066>) +1
> similar issue
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@kms_content_protection@content_type_change.html>
> (fdo#111828
> <https://bugs.freedesktop.org/show_bug.cgi?id=111828>) +1
> similar issue
>
> *
>
> igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
> fdo#109279
> <https://bugs.freedesktop.org/show_bug.cgi?id=109279>) +3
> similar issues
> *
>
> igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html>
> (fdo#109279
> <https://bugs.freedesktop.org/show_bug.cgi?id=109279>) +3
> similar issues
> *
>
> igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque:
>
> o
>
> shard-apl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl4/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html>
> (i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>)
>
> o
>
> shard-kbl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html>
> (i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>)
>
> *
>
> igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb4/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +105
> similar issues
> *
>
> igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb1/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +14
> similar issues
> *
>
> igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
>
> o shard-hsw: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html>
> (i915#96 <https://gitlab.freedesktop.org/drm/intel/issues/96>)
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html>
> (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
> fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +1
> similar issue
> *
>
> igt@kms_cursor_legacy@pipe-d-torture-bo:
>
> o
>
> shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl4/igt@kms_cursor_legacy@pipe-d-torture-bo.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533
> <https://gitlab.freedesktop.org/drm/intel/issues/533>) +1
> similar issue
>
> o
>
> shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533
> <https://gitlab.freedesktop.org/drm/intel/issues/533>) +1
> similar issue
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk9/igt@kms_cursor_legacy@pipe-d-torture-bo.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533
> <https://gitlab.freedesktop.org/drm/intel/issues/533>) +1
> similar issue
>
> *
>
> igt@kms_flip@flip-vs-expired-vblank@a-edp1:
>
> o
>
> shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
> (i915#2598
> <https://gitlab.freedesktop.org/drm/intel/issues/2598>)
>
> o
>
> shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>
> *
>
> igt@kms_flip_tiling@flip-yf-tiled:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@kms_flip_tiling@flip-yf-tiled.html>
> (fdo#111615
> <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +3
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html>
> (fdo#109280
> <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +19
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +83
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html>
> (i915#49 <https://gitlab.freedesktop.org/drm/intel/issues/49>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +24
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +69
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
>
> o shard-hsw: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +91
> similar issues
> *
>
> igt@kms_plane_scaling@2x-scaler-multi-pipe:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html>
> (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +3
> similar issues
> *
>
> igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> (i915#2920
> <https://gitlab.freedesktop.org/drm/intel/issues/2920>) +1
> similar issue
>
> o
>
> shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) +2
> similar issues
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) +2
> similar issues
>
> *
>
> igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> +2 similar issues
>
> o
>
> shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) +2
> similar issues
>
> *
>
> igt@kms_psr@psr2_cursor_blt:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_psr@psr2_cursor_blt.html>
> (fdo#109441
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1
> similar issue
> *
>
> igt@kms_psr@psr2_cursor_mmap_cpu:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_cpu.html>
> (fdo#109441
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +2
> similar issues
> *
>
> igt@kms_universal_plane@disable-primary-vs-flip-pipe-d:
>
> o shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-d.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +122
> similar issues
> *
>
> igt@nouveau_crc@pipe-a-ctx-flip-detection:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@nouveau_crc@pipe-a-ctx-flip-detection.html>
> (i915#2530
> <https://gitlab.freedesktop.org/drm/intel/issues/2530>) +1
> similar issue
> *
>
> igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb1/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html>
> (i915#2530
> <https://gitlab.freedesktop.org/drm/intel/issues/2530>) +1
> similar issue
> *
>
> igt@perf@unprivileged-single-ctx-counters:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@perf@unprivileged-single-ctx-counters.html>
> (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1
> similar issue
> *
>
> igt@prime_nv_test@i915_import_gtt_mmap:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@prime_nv_test@i915_import_gtt_mmap.html>
> (fdo#109291
> <https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
>
>
> Possible fixes
>
> *
>
> igt@gem_exec_fair@basic-none-share@rcs0:
>
> o shard-iclb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_exec_fair@basic-none-share@rcs0.html>
> *
>
> igt@gem_exec_fair@basic-pace@bcs0:
>
> o shard-tglb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb7/igt@gem_exec_fair@basic-pace@bcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@gem_exec_fair@basic-pace@bcs0.html>
> +1 similar issue
> *
>
> igt@gem_exec_fair@basic-pace@vcs1:
>
> o shard-kbl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html>
> +1 similar issue
> *
>
> igt@gem_exec_fair@basic-throttle@rcs0:
>
> o
>
> shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk5/igt@ge
> m_exec_fair@basic-throttle@rcs0.html>
>
> o
>
> shard-iclb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html>
> (i915#2849
> <https://gitlab.freedesktop.org/drm/intel/issues/2849>) -> PASS
>
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@g
> em_exec_fair@basic-throttle@rcs0.html>
>
> *
>
> igt@gem_exec_whisper@basic-forked:
>
> o shard-glk: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk1/igt@gem_exec_whisper@basic-forked.html>
> (i915#118 <https://gitlab.freedesktop.org/drm/intel/issues/118>
> / i915#95 <https://gitlab.freedesktop.org/drm/intel/issues/95>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk7/igt@gem_exec_whisper@basic-forked.html>
> +1 similar issue
> *
>
> igt@gem_huc_copy@huc-copy:
>
> o shard-tglb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb6/igt@gem_huc_copy@huc-copy.html>
> (i915#2190
> <https://gitlab.freedesktop.org/drm/intel/issues/2190>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@gem_huc_copy@huc-copy.html>
> *
>
> igt@kms_color@pipe-c-legacy-gamma-reset:
>
> o
>
> shard-kbl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl2/igt@kms_color@pipe-c-legacy-gamma-reset.html>
> (i915#2964
> <https://gitlab.freedesktop.org/drm/intel/issues/2964>) -> PASS
>
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@km
> s_color@pipe-c-legacy-gamma-reset.html>
>
> o
>
> shard-apl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl7/igt@kms_color@pipe-c-legacy-gamma-reset.html>
> (i915#2964
> <https://gitlab.freedesktop.org/drm/intel/issues/2964>) -> PASS
>
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl3/igt@km
> s_color@pipe-c-legacy-gamma-reset.html>
>
> o
>
> shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk2/igt@kms_color@pipe-c-legacy-gamma-reset.html>
> (i915#2964
> <https://gitlab.freedesktop.org/drm/intel/issues/2964>) -> PASS
>
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk6/igt@km
> s_color@pipe-c-legacy-gamma-reset.html>
>
> o
>
> shard-hsw: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw2/igt@kms_color@pipe-c-legacy-gamma-reset.html>
> (i915#2964
> <https://gitlab.freedesktop.org/drm/intel/issues/2964>) -> PASS
>
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@km
> s_color@pipe-c-legacy-gamma-reset.html>
>
> *
>
> igt@kms_cursor_legacy@cursor-vs-flip-toggle:
>
> o shard-hsw: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html>
> (i915#2370
> <https://gitlab.freedesktop.org/drm/intel/issues/2370>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html>
> *
>
> igt@kms_psr2_su@page_flip:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb1/igt@kms_psr2_su@page_flip.html>
> (fdo#109642
> <https://bugs.freedesktop.org/show_bug.cgi?id=109642> /
> fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068>
> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr2_su@page_flip.html>
> *
>
> igt@kms_psr@psr2_primary_page_flip:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb6/igt@kms_psr@psr2_primary_page_flip.html>
> (fdo#109441
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html>
> +2 similar issues
>
>
> Warnings
>
> *
>
> igt@i915_pm_dc@dc3co-vpb-simulation:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html>
> (i915#588 <https://gitlab.freedesktop.org/drm/intel/issues/588>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> *
>
> igt@i915_pm_rc6_residency@rc6-idle:
>
> o shard-iclb: WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html>
> (i915#2684
> <https://gitlab.freedesktop.org/drm/intel/issues/2684>) -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html>
> (i915#1804
> <https://gitlab.freedesktop.org/drm/intel/issues/1804> /
> i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>)
> *
>
> igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html>
> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
> *
>
> igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> (i915#2920
> <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> +2 similar issues
>
> {name}: This element is suppressed. This means it is ignored when
> computing the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>
> Participating hosts (10 -> 8)
>
> Missing (2): pig-skl-6260u pig-glk-j5005
>
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_5968 -> IGTPW_5426
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_9675: f84d1efce492ef0f46cf4fa1bf01b17ce1627fe4 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_5426:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
> IGT_5968: 267fa33c0947fbbb642098098ff6e5902f9a3d94 @
> git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2)
2021-01-24 14:40 [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test Juha-Pekka Heikkila
2021-01-24 15:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2) Patchwork
2021-01-24 17:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-01-25 2:23 ` Patchwork
2021-01-26 11:28 ` [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test Lisovskiy, Stanislav
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2021-01-25 2:23 UTC (permalink / raw)
To: Juha-Pekka Heikkilä; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 27629 bytes --]
== Series Details ==
Series: tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2)
URL : https://patchwork.freedesktop.org/series/86166/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9675_full -> IGTPW_5426_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
Known issues
------------
Here are the changes found in IGTPW_5426_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- shard-hsw: NOTRUN -> [WARN][1] ([i915#2283])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@core_hotunplug@unbind-rebind.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-tglb: NOTRUN -> [SKIP][2] ([fdo#109314])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gem_ctx_param@set-priority-not-supported.html
- shard-iclb: NOTRUN -> [SKIP][3] ([fdo#109314])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@idempotent:
- shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb7/igt@gem_ctx_persistence@idempotent.html
- shard-hsw: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@gem_ctx_persistence@idempotent.html
* igt@gem_ctx_sseu@engines:
- shard-tglb: NOTRUN -> [SKIP][6] ([i915#280])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-glk: [PASS][7] -> [FAIL][8] ([i915#2842])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk1/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_media_vme:
- shard-tglb: NOTRUN -> [SKIP][9] ([i915#284])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@gem_media_vme.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-iclb: NOTRUN -> [SKIP][10] ([i915#768]) +1 similar issue
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglb: NOTRUN -> [SKIP][11] ([fdo#110542]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gem_userptr_blits@coherency-unsync.html
- shard-iclb: NOTRUN -> [SKIP][12] ([fdo#109290]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_userptr_blits@coherency-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-tglb: NOTRUN -> [SKIP][13] ([fdo#109289]) +2 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglb: NOTRUN -> [SKIP][14] ([fdo#112306]) +2 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb1/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@unaligned-access:
- shard-iclb: NOTRUN -> [SKIP][15] ([fdo#112306]) +2 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_hangman@engine-hang@rcs0:
- shard-tglb: [PASS][16] -> [INCOMPLETE][17] ([i915#750])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb5/igt@i915_hangman@engine-hang@rcs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@i915_hangman@engine-hang@rcs0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-iclb: [PASS][18] -> [WARN][19] ([i915#2681] / [i915#2684])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@i915_pm_rc6_residency@rc6-fence.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][20] ([fdo#111614])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_big_fb@linear-16bpp-rotate-270.html
- shard-iclb: NOTRUN -> [SKIP][21] ([fdo#110725] / [fdo#111614])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_chamelium@hdmi-hpd-storm:
- shard-kbl: NOTRUN -> [SKIP][22] ([fdo#109271] / [fdo#111827]) +10 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl3/igt@kms_chamelium@hdmi-hpd-storm.html
- shard-hsw: NOTRUN -> [SKIP][23] ([fdo#109271] / [fdo#111827]) +6 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw6/igt@kms_chamelium@hdmi-hpd-storm.html
* igt@kms_chamelium@vga-hpd-with-enabled-mode:
- shard-iclb: NOTRUN -> [SKIP][24] ([fdo#109284] / [fdo#111827]) +7 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb6/igt@kms_chamelium@vga-hpd-with-enabled-mode.html
* igt@kms_color@pipe-b-legacy-gamma-reset:
- shard-apl: [PASS][25] -> [FAIL][26] ([i915#2964])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl1/igt@kms_color@pipe-b-legacy-gamma-reset.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl1/igt@kms_color@pipe-b-legacy-gamma-reset.html
- shard-kbl: [PASS][27] -> [FAIL][28] ([i915#2964])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma-reset.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma-reset.html
* igt@kms_color@pipe-d-ctm-green-to-red:
- shard-iclb: NOTRUN -> [SKIP][29] ([fdo#109278] / [i915#1149]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_color@pipe-d-ctm-green-to-red.html
* igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
- shard-snb: NOTRUN -> [SKIP][30] ([fdo#109271] / [fdo#111827]) +6 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
- shard-glk: NOTRUN -> [SKIP][31] ([fdo#109271] / [fdo#111827]) +8 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
- shard-apl: NOTRUN -> [SKIP][32] ([fdo#109271] / [fdo#111827]) +8 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
* igt@kms_color_chamelium@pipe-d-ctm-blue-to-red:
- shard-tglb: NOTRUN -> [SKIP][33] ([fdo#109284] / [fdo#111827]) +7 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html
- shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109278] / [fdo#109284] / [fdo#111827])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html
* igt@kms_content_protection@content_type_change:
- shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109300] / [fdo#111066]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_content_protection@content_type_change.html
- shard-tglb: NOTRUN -> [SKIP][36] ([fdo#111828]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb7/igt@kms_content_protection@content_type_change.html
* igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
- shard-iclb: NOTRUN -> [SKIP][37] ([fdo#109278] / [fdo#109279]) +3 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb8/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html
* igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:
- shard-tglb: NOTRUN -> [SKIP][38] ([fdo#109279]) +3 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html
* igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque:
- shard-apl: [PASS][39] -> [FAIL][40] ([i915#54])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl4/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html
- shard-kbl: [PASS][41] -> [FAIL][42] ([i915#54])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
- shard-snb: NOTRUN -> [SKIP][43] ([fdo#109271]) +105 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-snb4/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge:
- shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109278]) +14 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb1/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-hsw: [PASS][45] -> [FAIL][46] ([i915#96])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109274] / [fdo#109278]) +1 similar issue
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@pipe-d-torture-bo:
- shard-kbl: NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#533]) +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl4/igt@kms_cursor_legacy@pipe-d-torture-bo.html
- shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#533]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html
- shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#533]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk9/igt@kms_cursor_legacy@pipe-d-torture-bo.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-tglb: [PASS][51] -> [FAIL][52] ([i915#2598])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
- shard-iclb: [PASS][53] -> [FAIL][54] ([i915#79])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_tiling@flip-yf-tiled:
- shard-tglb: NOTRUN -> [SKIP][55] ([fdo#111615]) +3 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@kms_flip_tiling@flip-yf-tiled.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109280]) +19 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-apl: NOTRUN -> [SKIP][57] ([fdo#109271]) +83 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-glk: NOTRUN -> [FAIL][58] ([i915#49])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
- shard-tglb: NOTRUN -> [SKIP][59] ([fdo#111825]) +24 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-glk: NOTRUN -> [SKIP][60] ([fdo#109271]) +69 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-hsw: NOTRUN -> [SKIP][61] ([fdo#109271]) +91 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109274]) +3 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
- shard-tglb: NOTRUN -> [SKIP][63] ([i915#2920]) +1 similar issue
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html
- shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#658]) +2 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html
- shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#658]) +2 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
- shard-iclb: NOTRUN -> [SKIP][66] ([i915#658]) +2 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html
- shard-kbl: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#658]) +2 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109441]) +1 similar issue
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-iclb: [PASS][69] -> [SKIP][70] ([fdo#109441]) +2 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_universal_plane@disable-primary-vs-flip-pipe-d:
- shard-kbl: NOTRUN -> [SKIP][71] ([fdo#109271]) +122 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-d.html
* igt@nouveau_crc@pipe-a-ctx-flip-detection:
- shard-iclb: NOTRUN -> [SKIP][72] ([i915#2530]) +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@nouveau_crc@pipe-a-ctx-flip-detection.html
* igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame:
- shard-tglb: NOTRUN -> [SKIP][73] ([i915#2530]) +1 similar issue
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb1/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109289]) +1 similar issue
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@perf@unprivileged-single-ctx-counters.html
* igt@prime_nv_test@i915_import_gtt_mmap:
- shard-tglb: NOTRUN -> [SKIP][75] ([fdo#109291])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb6/igt@prime_nv_test@i915_import_gtt_mmap.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-iclb: [FAIL][76] ([i915#2842]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglb: [FAIL][78] ([i915#2842]) -> [PASS][79] +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb7/igt@gem_exec_fair@basic-pace@bcs0.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb5/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-kbl: [FAIL][80] ([i915#2842]) -> [PASS][81] +1 similar issue
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [FAIL][82] ([i915#2842]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html
- shard-iclb: [FAIL][84] ([i915#2849]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_whisper@basic-forked:
- shard-glk: [DMESG-WARN][86] ([i915#118] / [i915#95]) -> [PASS][87] +1 similar issue
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk1/igt@gem_exec_whisper@basic-forked.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk7/igt@gem_exec_whisper@basic-forked.html
* igt@gem_huc_copy@huc-copy:
- shard-tglb: [SKIP][88] ([i915#2190]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-tglb6/igt@gem_huc_copy@huc-copy.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-tglb2/igt@gem_huc_copy@huc-copy.html
* igt@kms_color@pipe-c-legacy-gamma-reset:
- shard-kbl: [FAIL][90] ([i915#2964]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-kbl2/igt@kms_color@pipe-c-legacy-gamma-reset.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-kbl2/igt@kms_color@pipe-c-legacy-gamma-reset.html
- shard-apl: [FAIL][92] ([i915#2964]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-apl7/igt@kms_color@pipe-c-legacy-gamma-reset.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-apl3/igt@kms_color@pipe-c-legacy-gamma-reset.html
- shard-glk: [FAIL][94] ([i915#2964]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-glk2/igt@kms_color@pipe-c-legacy-gamma-reset.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-glk6/igt@kms_color@pipe-c-legacy-gamma-reset.html
- shard-hsw: [FAIL][96] ([i915#2964]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw2/igt@kms_color@pipe-c-legacy-gamma-reset.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-hsw: [FAIL][98] ([i915#2370]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_psr2_su@page_flip:
- shard-iclb: [SKIP][100] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb1/igt@kms_psr2_su@page_flip.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr2_su@page_flip.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: [SKIP][102] ([fdo#109441]) -> [PASS][103] +2 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb6/igt@kms_psr@psr2_primary_page_flip.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
#### Warnings ####
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-iclb: [SKIP][104] ([i915#588]) -> [SKIP][105] ([i915#658])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-iclb: [WARN][106] ([i915#2684]) -> [WARN][107] ([i915#1804] / [i915#2684])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
- shard-iclb: [SKIP][108] ([i915#658]) -> [SKIP][109] ([i915#2920])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
- shard-iclb: [SKIP][110] ([i915#2920]) -> [SKIP][111] ([i915#658]) +2 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9675/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/shard-iclb7/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
[fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#111828]: https://bugs.freedesktop.org/show_bug.cgi?id=111828
[fdo#112306]: https://bugs.freedesktop.org/show_bug.cgi?id=112306
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
[i915#2370]: https://gitlab.freedesktop.org/drm/intel/issues/2370
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2964]: https://gitlab.freedesktop.org/drm/intel/issues/2964
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#750]: https://gitlab.freedesktop.org/drm/intel/issues/750
[i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
[i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5968 -> IGTPW_5426
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_9675: f84d1efce492ef0f46cf4fa1bf01b17ce1627fe4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5426: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
IGT_5968: 267fa33c0947fbbb642098098ff6e5902f9a3d94 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5426/index.html
[-- Attachment #1.2: Type: text/html, Size: 34224 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test
2021-01-24 14:40 [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test Juha-Pekka Heikkila
` (2 preceding siblings ...)
2021-01-25 2:23 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
@ 2021-01-26 11:28 ` Lisovskiy, Stanislav
3 siblings, 0 replies; 9+ messages in thread
From: Lisovskiy, Stanislav @ 2021-01-26 11:28 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
On Sun, Jan 24, 2021 at 04:40:02PM +0200, Juha-Pekka Heikkila wrote:
> Different default resolutions will affect test execution, try to normalize
> situation by always going to 1080p resolution. If this test will run on
> connector which doesn't have 1080p resolution, default resolution will be
> used. On gen<11 will be used 480p
>
> v2 (Stan): Use igt functions for modesetting. Change igt_warn to igt_debug
> because there's one ICL in intel CI with eDP that would show up warnings
> randomly depending which machine run which test.
>
> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Reviewed-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> ---
> tests/kms_flip_scaled_crc.c | 85 ++++++++++++++++++++-----------------
> 1 file changed, 45 insertions(+), 40 deletions(-)
>
> diff --git a/tests/kms_flip_scaled_crc.c b/tests/kms_flip_scaled_crc.c
> index 93d8031f7..f77484063 100644
> --- a/tests/kms_flip_scaled_crc.c
> +++ b/tests/kms_flip_scaled_crc.c
> @@ -35,6 +35,8 @@ typedef struct {
> struct igt_fb small_fb;
> struct igt_fb big_fb;
> igt_pipe_crc_t *pipe_crc;
> + uint32_t attemptmodewidth;
> + uint32_t attemptmodeheight;
> } data_t;
>
> const struct {
> @@ -133,8 +135,7 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
> {
> igt_plane_t *primary;
> igt_crc_t small_crc, big_crc;
> -
> - drmModeModeInfo *mode;
> + drmModeModeInfoPtr modetoset = NULL;
> struct drm_event_vblank ev;
> int ret;
>
> @@ -142,41 +143,24 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
>
> igt_debug("running on output %s pipe %s\n", output->name,
> kmstest_pipe_name(pipe));
> +
> if (data->big_fb.fb_id == 0) {
> - mode = igt_output_get_mode(output);
> -
> - // big fb will be 4k unless running on older than ICL
> - if (data->gen < 11) {
> - setup_fb(data, &data->small_fb,
> - min(mode->hdisplay, 640),
> - min(mode->vdisplay, 480),
> - flip_scenario_test[index].firstformat,
> - flip_scenario_test[index].firstmodifier);
> -
> - setup_fb(data, &data->big_fb,
> - 1280, 960,
> - flip_scenario_test[index].secondformat,
> - flip_scenario_test[index].secondmodifier);
> - igt_debug("small fb %dx%d\n", data->small_fb.width,
> - data->small_fb.height);
> - igt_debug("big fb %dx%d\n", data->big_fb.width,
> - data->big_fb.height);
> - } else {
> - setup_fb(data, &data->small_fb,
> - min(mode->hdisplay, 1920),
> - min(mode->vdisplay, 1080),
> - flip_scenario_test[index].firstformat,
> - flip_scenario_test[index].firstmodifier);
> -
> - setup_fb(data, &data->big_fb,
> - 3840, 2160,
> - flip_scenario_test[index].secondformat,
> - flip_scenario_test[index].secondmodifier);
> - igt_debug("small fb %dx%d\n", data->small_fb.width,
> - data->small_fb.height);
> - igt_debug("big fb %dx%d\n", data->big_fb.width,
> - data->big_fb.height);
> - }
> + setup_fb(data, &data->small_fb,
> + data->attemptmodewidth,
> + data->attemptmodeheight,
> + flip_scenario_test[index].firstformat,
> + flip_scenario_test[index].firstmodifier);
> +
> + setup_fb(data, &data->big_fb,
> + data->attemptmodewidth * 2,
> + data->attemptmodeheight * 2,
> + flip_scenario_test[index].secondformat,
> + flip_scenario_test[index].secondmodifier);
> +
> + igt_debug("small fb %dx%d\n", data->small_fb.width,
> + data->small_fb.height);
> + igt_debug("big fb %dx%d\n", data->big_fb.width,
> + data->big_fb.height);
> }
>
> igt_output_set_pipe(output, pipe);
> @@ -186,13 +170,26 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
> NULL);
> data->pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe,
> INTEL_PIPE_CRC_SOURCE_AUTO);
> - igt_pipe_crc_start(data->pipe_crc);
> +
> + for (int i = 0; i < output->config.connector->count_modes; i++) {
> + if (output->config.connector->modes[i].hdisplay == data->attemptmodewidth &&
> + output->config.connector->modes[i].vdisplay == data->attemptmodeheight) {
> + modetoset = &output->config.connector->modes[i];
> + break;
> + }
> + }
> +
> + if (!modetoset)
> + igt_debug("%dp mode was not found from connector, will continue with default. This may cause cdclk to fail this test.\n",
> + data->attemptmodeheight);
> + else
> + igt_output_override_mode(output, modetoset);
>
> igt_plane_set_position(primary, 0, 0);
> igt_plane_set_fb(primary, &data->small_fb);
> + igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
>
> - igt_display_commit_atomic(&data->display,
> - DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> + igt_pipe_crc_start(data->pipe_crc);
> igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &small_crc);
>
> igt_plane_set_fb(primary, &data->big_fb);
> @@ -203,7 +200,7 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
> DRM_MODE_PAGE_FLIP_EVENT, NULL);
>
> igt_require_f(ret != -ERANGE,
> - "Platform scaling limits exceeded, skipping.");
> + "Platform scaling limits exceeded, skipping.\n");
> igt_assert_eq(ret, 0);
>
> igt_assert(read(data->drm_fd, &ev, sizeof(ev)) == sizeof(ev));
> @@ -230,6 +227,14 @@ igt_main
> igt_require(data.display.is_atomic);
> igt_require_pipe_crc(data.drm_fd);
> kmstest_set_vt_graphics_mode();
> +
> + if (data.gen < 11) {
> + data.attemptmodewidth = 640;
> + data.attemptmodeheight = 480;
> + } else {
> + data.attemptmodewidth = 1920;
> + data.attemptmodeheight = 1080;
> + }
> }
>
> for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
> --
> 2.28.0
>
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test
@ 2021-01-22 8:41 Juha-Pekka Heikkila
2021-01-22 11:44 ` Lisovskiy, Stanislav
0 siblings, 1 reply; 9+ messages in thread
From: Juha-Pekka Heikkila @ 2021-01-22 8:41 UTC (permalink / raw)
To: igt-dev
Different default resolutions will affect test execution, try
to normalize situation by always going to 1080p resolution.
If this test will run on connector which doesn't have 1080p
resolution, default resolution will be used. On gen<11
will be used 480p
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
tests/kms_flip_scaled_crc.c | 96 +++++++++++++++++++++----------------
1 file changed, 54 insertions(+), 42 deletions(-)
diff --git a/tests/kms_flip_scaled_crc.c b/tests/kms_flip_scaled_crc.c
index 93d8031f7..8d9c1d7d7 100644
--- a/tests/kms_flip_scaled_crc.c
+++ b/tests/kms_flip_scaled_crc.c
@@ -35,6 +35,8 @@ typedef struct {
struct igt_fb small_fb;
struct igt_fb big_fb;
igt_pipe_crc_t *pipe_crc;
+ uint32_t attemptmodewidth;
+ uint32_t attemptmodeheight;
} data_t;
const struct {
@@ -133,8 +135,7 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
{
igt_plane_t *primary;
igt_crc_t small_crc, big_crc;
-
- drmModeModeInfo *mode;
+ drmModeModeInfoPtr modetoset = NULL;
struct drm_event_vblank ev;
int ret;
@@ -142,41 +143,24 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
igt_debug("running on output %s pipe %s\n", output->name,
kmstest_pipe_name(pipe));
+
if (data->big_fb.fb_id == 0) {
- mode = igt_output_get_mode(output);
-
- // big fb will be 4k unless running on older than ICL
- if (data->gen < 11) {
- setup_fb(data, &data->small_fb,
- min(mode->hdisplay, 640),
- min(mode->vdisplay, 480),
- flip_scenario_test[index].firstformat,
- flip_scenario_test[index].firstmodifier);
-
- setup_fb(data, &data->big_fb,
- 1280, 960,
- flip_scenario_test[index].secondformat,
- flip_scenario_test[index].secondmodifier);
- igt_debug("small fb %dx%d\n", data->small_fb.width,
- data->small_fb.height);
- igt_debug("big fb %dx%d\n", data->big_fb.width,
- data->big_fb.height);
- } else {
- setup_fb(data, &data->small_fb,
- min(mode->hdisplay, 1920),
- min(mode->vdisplay, 1080),
- flip_scenario_test[index].firstformat,
- flip_scenario_test[index].firstmodifier);
-
- setup_fb(data, &data->big_fb,
- 3840, 2160,
- flip_scenario_test[index].secondformat,
- flip_scenario_test[index].secondmodifier);
- igt_debug("small fb %dx%d\n", data->small_fb.width,
- data->small_fb.height);
- igt_debug("big fb %dx%d\n", data->big_fb.width,
- data->big_fb.height);
- }
+ setup_fb(data, &data->small_fb,
+ data->attemptmodewidth,
+ data->attemptmodeheight,
+ flip_scenario_test[index].firstformat,
+ flip_scenario_test[index].firstmodifier);
+
+ setup_fb(data, &data->big_fb,
+ data->attemptmodewidth * 2,
+ data->attemptmodeheight * 2,
+ flip_scenario_test[index].secondformat,
+ flip_scenario_test[index].secondmodifier);
+
+ igt_debug("small fb %dx%d\n", data->small_fb.width,
+ data->small_fb.height);
+ igt_debug("big fb %dx%d\n", data->big_fb.width,
+ data->big_fb.height);
}
igt_output_set_pipe(output, pipe);
@@ -186,13 +170,33 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
NULL);
data->pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe,
INTEL_PIPE_CRC_SOURCE_AUTO);
- igt_pipe_crc_start(data->pipe_crc);
- igt_plane_set_position(primary, 0, 0);
- igt_plane_set_fb(primary, &data->small_fb);
+ for (int i = 0; i < output->config.connector->count_modes; i++) {
+ if (output->config.connector->modes[i].hdisplay == data->attemptmodewidth &&
+ output->config.connector->modes[i].vdisplay == data->attemptmodeheight) {
+ modetoset = &output->config.connector->modes[i];
+ break;
+ }
+ }
+
+ if (!modetoset) {
+ igt_warn("%dp mode was not found from connector, will continue with default\n",
+ data->attemptmodeheight);
+
+ igt_plane_set_position(primary, 0, 0);
+ igt_plane_set_fb(primary, &data->small_fb);
+ igt_display_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ } else {
+ ret = drmModeSetCrtc(data->drm_fd, output->config.crtc->crtc_id,
+ data->small_fb.fb_id, 0, 0,
+ &output->config.connector->connector_id, 1,
+ modetoset);
+ igt_assert_f(ret == 0, "Couldn't set %dp mode\n",
+ data->attemptmodeheight);
+ }
- igt_display_commit_atomic(&data->display,
- DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ igt_pipe_crc_start(data->pipe_crc);
igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &small_crc);
igt_plane_set_fb(primary, &data->big_fb);
@@ -203,7 +207,7 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
DRM_MODE_PAGE_FLIP_EVENT, NULL);
igt_require_f(ret != -ERANGE,
- "Platform scaling limits exceeded, skipping.");
+ "Platform scaling limits exceeded, skipping.\n");
igt_assert_eq(ret, 0);
igt_assert(read(data->drm_fd, &ev, sizeof(ev)) == sizeof(ev));
@@ -230,6 +234,14 @@ igt_main
igt_require(data.display.is_atomic);
igt_require_pipe_crc(data.drm_fd);
kmstest_set_vt_graphics_mode();
+
+ if (data.gen < 11) {
+ data.attemptmodewidth = 640;
+ data.attemptmodeheight = 480;
+ } else {
+ data.attemptmodewidth = 1920;
+ data.attemptmodeheight = 1080;
+ }
}
for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
--
2.28.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test
2021-01-22 8:41 Juha-Pekka Heikkila
@ 2021-01-22 11:44 ` Lisovskiy, Stanislav
0 siblings, 0 replies; 9+ messages in thread
From: Lisovskiy, Stanislav @ 2021-01-22 11:44 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
On Fri, Jan 22, 2021 at 10:41:39AM +0200, Juha-Pekka Heikkila wrote:
> Different default resolutions will affect test execution, try
> to normalize situation by always going to 1080p resolution.
> If this test will run on connector which doesn't have 1080p
> resolution, default resolution will be used. On gen<11
> will be used 480p
>
> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> ---
> tests/kms_flip_scaled_crc.c | 96 +++++++++++++++++++++----------------
> 1 file changed, 54 insertions(+), 42 deletions(-)
>
> diff --git a/tests/kms_flip_scaled_crc.c b/tests/kms_flip_scaled_crc.c
> index 93d8031f7..8d9c1d7d7 100644
> --- a/tests/kms_flip_scaled_crc.c
> +++ b/tests/kms_flip_scaled_crc.c
> @@ -35,6 +35,8 @@ typedef struct {
> struct igt_fb small_fb;
> struct igt_fb big_fb;
> igt_pipe_crc_t *pipe_crc;
> + uint32_t attemptmodewidth;
> + uint32_t attemptmodeheight;
Good idea to parametrize this.
> } data_t;
>
> const struct {
> @@ -133,8 +135,7 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
> {
> igt_plane_t *primary;
> igt_crc_t small_crc, big_crc;
> -
> - drmModeModeInfo *mode;
> + drmModeModeInfoPtr modetoset = NULL;
> struct drm_event_vblank ev;
> int ret;
>
> @@ -142,41 +143,24 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
>
> igt_debug("running on output %s pipe %s\n", output->name,
> kmstest_pipe_name(pipe));
> +
> if (data->big_fb.fb_id == 0) {
> - mode = igt_output_get_mode(output);
> -
> - // big fb will be 4k unless running on older than ICL
> - if (data->gen < 11) {
> - setup_fb(data, &data->small_fb,
> - min(mode->hdisplay, 640),
> - min(mode->vdisplay, 480),
> - flip_scenario_test[index].firstformat,
> - flip_scenario_test[index].firstmodifier);
> -
> - setup_fb(data, &data->big_fb,
> - 1280, 960,
> - flip_scenario_test[index].secondformat,
> - flip_scenario_test[index].secondmodifier);
> - igt_debug("small fb %dx%d\n", data->small_fb.width,
> - data->small_fb.height);
> - igt_debug("big fb %dx%d\n", data->big_fb.width,
> - data->big_fb.height);
> - } else {
> - setup_fb(data, &data->small_fb,
> - min(mode->hdisplay, 1920),
> - min(mode->vdisplay, 1080),
> - flip_scenario_test[index].firstformat,
> - flip_scenario_test[index].firstmodifier);
> -
> - setup_fb(data, &data->big_fb,
> - 3840, 2160,
> - flip_scenario_test[index].secondformat,
> - flip_scenario_test[index].secondmodifier);
> - igt_debug("small fb %dx%d\n", data->small_fb.width,
> - data->small_fb.height);
> - igt_debug("big fb %dx%d\n", data->big_fb.width,
> - data->big_fb.height);
> - }
> + setup_fb(data, &data->small_fb,
> + data->attemptmodewidth,
> + data->attemptmodeheight,
> + flip_scenario_test[index].firstformat,
> + flip_scenario_test[index].firstmodifier);
> +
> + setup_fb(data, &data->big_fb,
> + data->attemptmodewidth * 2,
> + data->attemptmodeheight * 2,
> + flip_scenario_test[index].secondformat,
> + flip_scenario_test[index].secondmodifier);
> +
> + igt_debug("small fb %dx%d\n", data->small_fb.width,
> + data->small_fb.height);
> + igt_debug("big fb %dx%d\n", data->big_fb.width,
> + data->big_fb.height);
> }
>
> igt_output_set_pipe(output, pipe);
> @@ -186,13 +170,33 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
> NULL);
> data->pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe,
> INTEL_PIPE_CRC_SOURCE_AUTO);
> - igt_pipe_crc_start(data->pipe_crc);
>
> - igt_plane_set_position(primary, 0, 0);
> - igt_plane_set_fb(primary, &data->small_fb);
> + for (int i = 0; i < output->config.connector->count_modes; i++) {
> + if (output->config.connector->modes[i].hdisplay == data->attemptmodewidth &&
> + output->config.connector->modes[i].vdisplay == data->attemptmodeheight) {
> + modetoset = &output->config.connector->modes[i];
> + break;
> + }
> + }
> +
> + if (!modetoset) {
> + igt_warn("%dp mode was not found from connector, will continue with default\n",
> + data->attemptmodeheight);
> +
> + igt_plane_set_position(primary, 0, 0);
> + igt_plane_set_fb(primary, &data->small_fb);
> + igt_display_commit_atomic(&data->display,
> + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> + } else {
> + ret = drmModeSetCrtc(data->drm_fd, output->config.crtc->crtc_id,
> + data->small_fb.fb_id, 0, 0,
> + &output->config.connector->connector_id, 1,
> + modetoset);
> + igt_assert_f(ret == 0, "Couldn't set %dp mode\n",
> + data->attemptmodeheight);
This is not critical, but could use igt_output_override_mode here, so that
we kinda call igt api always. Anyway a minor thing.
Reviewed-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> + }
>
> - igt_display_commit_atomic(&data->display,
> - DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> + igt_pipe_crc_start(data->pipe_crc);
> igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &small_crc);
>
> igt_plane_set_fb(primary, &data->big_fb);
> @@ -203,7 +207,7 @@ static void test_flip_to_scaled(data_t *data, uint32_t index, enum pipe pipe,
> DRM_MODE_PAGE_FLIP_EVENT, NULL);
>
> igt_require_f(ret != -ERANGE,
> - "Platform scaling limits exceeded, skipping.");
> + "Platform scaling limits exceeded, skipping.\n");
> igt_assert_eq(ret, 0);
>
> igt_assert(read(data->drm_fd, &ev, sizeof(ev)) == sizeof(ev));
> @@ -230,6 +234,14 @@ igt_main
> igt_require(data.display.is_atomic);
> igt_require_pipe_crc(data.drm_fd);
> kmstest_set_vt_graphics_mode();
> +
> + if (data.gen < 11) {
> + data.attemptmodewidth = 640;
> + data.attemptmodeheight = 480;
> + } else {
> + data.attemptmodewidth = 1920;
> + data.attemptmodeheight = 1080;
> + }
> }
>
> for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
> --
> 2.28.0
>
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2021-01-26 11:27 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-24 14:40 [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test Juha-Pekka Heikkila
2021-01-24 15:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip_scaled_crc: try to set mode to 1080p during test (rev2) Patchwork
2021-01-24 17:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-01-24 20:35 ` Juha-Pekka Heikkilä
2021-01-25 2:30 ` Vudum, Lakshminarayana
2021-01-25 2:23 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
2021-01-26 11:28 ` [igt-dev] [PATCH i-g-t] tests/kms_flip_scaled_crc: try to set mode to 1080p during test Lisovskiy, Stanislav
-- strict thread matches above, loose matches on Subject: below --
2021-01-22 8:41 Juha-Pekka Heikkila
2021-01-22 11:44 ` Lisovskiy, Stanislav
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox