* [igt-dev] [PATCH i-g-t] tests/kms_flip_tiling: Fix clean up when subtest fails
@ 2021-05-18 17:02 Jeevan B
2021-05-18 17:56 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jeevan B @ 2021-05-18 17:02 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi
If a subtest fails during commit for some reason on the first connector,
all the subsequent subtests on the same pipe fails.
This is because the pipe is still connected to the previous connector
as the cleanup part will have been skipped during the failed subtest.
To fix this, moved the cleanup part to a separate function and calling it
outside the subtest scope.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/kms_flip_tiling.c | 31 +++++++++++++++++++++++--------
1 file changed, 23 insertions(+), 8 deletions(-)
diff --git a/tests/kms_flip_tiling.c b/tests/kms_flip_tiling.c
index 09e99580..36f69ffd 100644
--- a/tests/kms_flip_tiling.c
+++ b/tests/kms_flip_tiling.c
@@ -39,6 +39,7 @@ typedef struct {
igt_display_t display;
int gen;
uint32_t testformat;
+ struct igt_fb fb[2];
} data_t;
static igt_pipe_crc_t *_pipe_crc;
@@ -69,7 +70,6 @@ test_flip_tiling(data_t *data, enum pipe pipe, igt_output_t *output, uint64_t ti
{
drmModeModeInfo *mode;
igt_plane_t *primary;
- struct igt_fb fb[2];
igt_pipe_crc_t *pipe_crc;
igt_crc_t reference_crc, crc;
int fb_id, ret, width;
@@ -105,27 +105,27 @@ test_flip_tiling(data_t *data, enum pipe pipe, igt_output_t *output, uint64_t ti
fb_id = igt_create_pattern_fb(data->drm_fd, width, mode->vdisplay,
data->testformat, tiling[0],
- &fb[0]);
+ &data->fb[0]);
igt_assert(fb_id);
/* Second fb has different background so CRC does not match. */
fb_id = igt_create_color_pattern_fb(data->drm_fd, width, mode->vdisplay,
data->testformat, tiling[1],
- 0.5, 0.5, 0.5, &fb[1]);
+ 0.5, 0.5, 0.5, &data->fb[1]);
igt_assert(fb_id);
/* Set the crtc and generate a reference CRC. */
- igt_plane_set_fb(primary, &fb[1]);
+ igt_plane_set_fb(primary, &data->fb[1]);
igt_display_commit(&data->display);
igt_pipe_crc_collect_crc(pipe_crc, &reference_crc);
/* Commit the first fb. */
- igt_plane_set_fb(primary, &fb[0]);
+ igt_plane_set_fb(primary, &data->fb[0]);
igt_display_commit(&data->display);
/* Flip to the second fb. */
ret = drmModePageFlip(data->drm_fd, output->config.crtc->crtc_id,
- fb[1].fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
+ data->fb[1].fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
/*
* Page flip should work but some transitions may be temporarily
* on some kernels.
@@ -137,6 +137,12 @@ test_flip_tiling(data_t *data, enum pipe pipe, igt_output_t *output, uint64_t ti
/* Get a crc and compare with the reference. */
igt_pipe_crc_collect_crc(pipe_crc, &crc);
igt_assert_crc_equal(&reference_crc, &crc);
+}
+
+static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
+{
+ igt_plane_t *primary;
+ primary = igt_output_get_plane(output, 0);
/* Clean up. */
igt_plane_set_fb(primary, NULL);
@@ -144,8 +150,8 @@ test_flip_tiling(data_t *data, enum pipe pipe, igt_output_t *output, uint64_t ti
igt_output_set_pipe(output, PIPE_ANY);
igt_display_commit(&data->display);
- igt_remove_fb(data->drm_fd, &fb[0]);
- igt_remove_fb(data->drm_fd, &fb[1]);
+ igt_remove_fb(data->drm_fd, &data->fb[0]);
+ igt_remove_fb(data->drm_fd, &data->fb[1]);
}
static data_t data;
@@ -185,6 +191,7 @@ igt_main
for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
test_flip_tiling(&data, pipe, output, tiling);
+ test_cleanup(&data, pipe, output);
}
}
@@ -204,6 +211,7 @@ igt_main
for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
test_flip_tiling(&data, pipe, output, tiling);
+ test_cleanup(&data, pipe, output);
}
}
@@ -223,6 +231,7 @@ igt_main
for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
test_flip_tiling(&data, pipe, output, tiling);
+ test_cleanup(&data, pipe, output);
}
}
@@ -246,6 +255,7 @@ igt_main
for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
test_flip_tiling(&data, pipe, output, tiling);
+ test_cleanup(&data, pipe, output);
}
}
@@ -265,6 +275,7 @@ igt_main
for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
test_flip_tiling(&data, pipe, output, tiling);
+ test_cleanup(&data, pipe, output);
}
}
@@ -284,6 +295,7 @@ igt_main
for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
test_flip_tiling(&data, pipe, output, tiling);
+ test_cleanup(&data, pipe, output);
}
}
@@ -307,6 +319,7 @@ igt_main
for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
test_flip_tiling(&data, pipe, output, tiling);
+ test_cleanup(&data, pipe, output);
}
}
@@ -326,6 +339,7 @@ igt_main
for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
test_flip_tiling(&data, pipe, output, tiling);
+ test_cleanup(&data, pipe, output);
}
}
@@ -345,6 +359,7 @@ igt_main
for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
test_flip_tiling(&data, pipe, output, tiling);
+ test_cleanup(&data, pipe, output);
}
}
--
2.19.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip_tiling: Fix clean up when subtest fails
2021-05-18 17:02 [igt-dev] [PATCH i-g-t] tests/kms_flip_tiling: Fix clean up when subtest fails Jeevan B
@ 2021-05-18 17:56 ` Patchwork
2021-05-19 8:24 ` [igt-dev] [PATCH i-g-t] " Petri Latvala
2021-05-19 13:54 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2021-05-18 17:56 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 11521 bytes --]
== Series Details ==
Series: tests/kms_flip_tiling: Fix clean up when subtest fails
URL : https://patchwork.freedesktop.org/series/90297/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_10098 -> IGTPW_5821
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/index.html
Known issues
------------
Here are the changes found in IGTPW_5821 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fence@basic-await@rcs0:
- fi-bsw-kefka: [PASS][1] -> [FAIL][2] ([i915#3457])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bsw-kefka/igt@gem_exec_fence@basic-await@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bsw-kefka/igt@gem_exec_fence@basic-await@rcs0.html
* igt@gem_exec_fence@basic-await@vcs0:
- fi-bsw-n3050: [PASS][3] -> [FAIL][4] ([i915#3457]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bsw-n3050/igt@gem_exec_fence@basic-await@vcs0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bsw-n3050/igt@gem_exec_fence@basic-await@vcs0.html
- fi-bsw-nick: [PASS][5] -> [FAIL][6] ([i915#3457])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bsw-nick/igt@gem_exec_fence@basic-await@vcs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bsw-nick/igt@gem_exec_fence@basic-await@vcs0.html
* igt@gem_exec_fence@basic-await@vecs0:
- fi-glk-dsi: [PASS][7] -> [FAIL][8] ([i915#3457])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-glk-dsi/igt@gem_exec_fence@basic-await@vecs0.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-glk-dsi/igt@gem_exec_fence@basic-await@vecs0.html
* igt@kms_busy@basic@modeset:
- fi-ilk-650: [PASS][9] -> [INCOMPLETE][10] ([i915#3457])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-ilk-650/igt@kms_busy@basic@modeset.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-ilk-650/igt@kms_busy@basic@modeset.html
* igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence:
- fi-elk-e7500: [PASS][11] -> [FAIL][12] ([i915#53])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-elk-e7500/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-elk-e7500/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html
#### Possible fixes ####
* igt@gem_busy@busy@all:
- fi-bsw-kefka: [FAIL][13] ([i915#3457]) -> [PASS][14] +3 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bsw-kefka/igt@gem_busy@busy@all.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bsw-kefka/igt@gem_busy@busy@all.html
* igt@gem_exec_fence@nb-await@vcs0:
- fi-bsw-nick: [FAIL][15] ([i915#3457]) -> [PASS][16] +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bsw-nick/igt@gem_exec_fence@nb-await@vcs0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bsw-nick/igt@gem_exec_fence@nb-await@vcs0.html
- fi-apl-guc: [FAIL][17] ([i915#3457]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-apl-guc/igt@gem_exec_fence@nb-await@vcs0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-apl-guc/igt@gem_exec_fence@nb-await@vcs0.html
* igt@gem_exec_fence@nb-await@vecs0:
- fi-bsw-n3050: [FAIL][19] ([i915#3457]) -> [PASS][20] +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bsw-n3050/igt@gem_exec_fence@nb-await@vecs0.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bsw-n3050/igt@gem_exec_fence@nb-await@vecs0.html
* igt@gem_wait@busy@all:
- fi-bsw-nick: [FAIL][21] ([i915#3177] / [i915#3457]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bsw-nick/igt@gem_wait@busy@all.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bsw-nick/igt@gem_wait@busy@all.html
- fi-glk-dsi: [FAIL][23] ([i915#3457]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-glk-dsi/igt@gem_wait@busy@all.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-glk-dsi/igt@gem_wait@busy@all.html
* igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence:
- fi-ilk-650: [FAIL][25] ([i915#53]) -> [PASS][26] +6 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-ilk-650/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-ilk-650/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence.html
- fi-elk-e7500: [FAIL][27] ([i915#53]) -> [PASS][28] +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-elk-e7500/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-elk-e7500/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence.html
* igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence:
- fi-bsw-kefka: [FAIL][29] ([i915#53]) -> [PASS][30] +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bsw-kefka/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bsw-kefka/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html
#### Warnings ####
* igt@gem_exec_gttfill@basic:
- fi-ilk-650: [FAIL][31] ([i915#3472]) -> [FAIL][32] ([i915#3457] / [i915#3472])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-ilk-650/igt@gem_exec_gttfill@basic.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-ilk-650/igt@gem_exec_gttfill@basic.html
* igt@i915_module_load@reload:
- fi-icl-u2: [DMESG-WARN][33] ([i915#1982] / [i915#3457]) -> [DMESG-WARN][34] ([i915#3457])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-icl-u2/igt@i915_module_load@reload.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-icl-u2/igt@i915_module_load@reload.html
- fi-elk-e7500: [DMESG-WARN][35] ([i915#3457]) -> [DMESG-FAIL][36] ([i915#3457]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-elk-e7500/igt@i915_module_load@reload.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-elk-e7500/igt@i915_module_load@reload.html
- fi-bsw-kefka: [DMESG-WARN][37] ([i915#1982] / [i915#3457]) -> [DMESG-FAIL][38] ([i915#1982] / [i915#3457])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bsw-kefka/igt@i915_module_load@reload.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bsw-kefka/igt@i915_module_load@reload.html
- fi-glk-dsi: [DMESG-WARN][39] ([i915#3457]) -> [DMESG-FAIL][40] ([i915#3457])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-glk-dsi/igt@i915_module_load@reload.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-glk-dsi/igt@i915_module_load@reload.html
* igt@i915_selftest@live@execlists:
- fi-bsw-kefka: [DMESG-FAIL][41] -> [INCOMPLETE][42] ([i915#2782] / [i915#2940])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bsw-kefka/igt@i915_selftest@live@execlists.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bsw-kefka/igt@i915_selftest@live@execlists.html
* igt@runner@aborted:
- fi-skl-6600u: [FAIL][43] ([i915#1436] / [i915#2426] / [i915#3363]) -> [FAIL][44] ([i915#1436] / [i915#3363])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-skl-6600u/igt@runner@aborted.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-skl-6600u/igt@runner@aborted.html
- fi-glk-dsi: [FAIL][45] ([i915#2426] / [i915#3363] / [k.org#202321]) -> [FAIL][46] ([i915#3363] / [k.org#202321])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-glk-dsi/igt@runner@aborted.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-glk-dsi/igt@runner@aborted.html
- fi-bdw-5557u: [FAIL][47] ([i915#3462]) -> [FAIL][48] ([i915#1602] / [i915#2029])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-bdw-5557u/igt@runner@aborted.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-bdw-5557u/igt@runner@aborted.html
- fi-kbl-7500u: [FAIL][49] ([i915#1436] / [i915#3363]) -> [FAIL][50] ([i915#1436] / [i915#2426] / [i915#3363])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-kbl-7500u/igt@runner@aborted.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-kbl-7500u/igt@runner@aborted.html
- fi-kbl-7567u: [FAIL][51] ([i915#1436] / [i915#2426] / [i915#3363]) -> [FAIL][52] ([i915#1436] / [i915#3363])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-kbl-7567u/igt@runner@aborted.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-kbl-7567u/igt@runner@aborted.html
- fi-skl-6700k2: [FAIL][53] ([i915#1436] / [i915#2426] / [i915#3363]) -> [FAIL][54] ([i915#1436] / [i915#3363])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/fi-skl-6700k2/igt@runner@aborted.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/fi-skl-6700k2/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
[i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
[i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
[i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
[i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
[i915#3177]: https://gitlab.freedesktop.org/drm/intel/issues/3177
[i915#3277]: https://gitlab.freedesktop.org/drm/intel/issues/3277
[i915#3283]: https://gitlab.freedesktop.org/drm/intel/issues/3283
[i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
[i915#3457]: https://gitlab.freedesktop.org/drm/intel/issues/3457
[i915#3462]: https://gitlab.freedesktop.org/drm/intel/issues/3462
[i915#3472]: https://gitlab.freedesktop.org/drm/intel/issues/3472
[i915#53]: https://gitlab.freedesktop.org/drm/intel/issues/53
[k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321
Participating hosts (45 -> 38)
------------------------------
Missing (7): fi-ilk-m540 fi-hsw-4200u fi-skl-guc fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6087 -> IGTPW_5821
CI-20190529: 20190529
CI_DRM_10098: b33b0708e50291e2ba399aaf43286278015236e1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5821: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/index.html
IGT_6087: a1772be7dede83a4f65e5986fd7083a9c8f89083 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/index.html
[-- Attachment #1.2: Type: text/html, Size: 15558 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] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_flip_tiling: Fix clean up when subtest fails
2021-05-18 17:02 [igt-dev] [PATCH i-g-t] tests/kms_flip_tiling: Fix clean up when subtest fails Jeevan B
2021-05-18 17:56 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2021-05-19 8:24 ` Petri Latvala
2021-05-19 13:54 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Petri Latvala @ 2021-05-19 8:24 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev, kunal1.joshi
On Tue, May 18, 2021 at 10:32:19PM +0530, Jeevan B wrote:
> If a subtest fails during commit for some reason on the first connector,
> all the subsequent subtests on the same pipe fails.
> This is because the pipe is still connected to the previous connector
> as the cleanup part will have been skipped during the failed subtest.
>
> To fix this, moved the cleanup part to a separate function and calling it
> outside the subtest scope.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/kms_flip_tiling.c | 31 +++++++++++++++++++++++--------
> 1 file changed, 23 insertions(+), 8 deletions(-)
>
> diff --git a/tests/kms_flip_tiling.c b/tests/kms_flip_tiling.c
> index 09e99580..36f69ffd 100644
> --- a/tests/kms_flip_tiling.c
> +++ b/tests/kms_flip_tiling.c
> @@ -39,6 +39,7 @@ typedef struct {
> igt_display_t display;
> int gen;
> uint32_t testformat;
> + struct igt_fb fb[2];
> } data_t;
>
> static igt_pipe_crc_t *_pipe_crc;
> @@ -69,7 +70,6 @@ test_flip_tiling(data_t *data, enum pipe pipe, igt_output_t *output, uint64_t ti
> {
> drmModeModeInfo *mode;
> igt_plane_t *primary;
> - struct igt_fb fb[2];
> igt_pipe_crc_t *pipe_crc;
> igt_crc_t reference_crc, crc;
> int fb_id, ret, width;
> @@ -105,27 +105,27 @@ test_flip_tiling(data_t *data, enum pipe pipe, igt_output_t *output, uint64_t ti
>
> fb_id = igt_create_pattern_fb(data->drm_fd, width, mode->vdisplay,
> data->testformat, tiling[0],
> - &fb[0]);
> + &data->fb[0]);
> igt_assert(fb_id);
>
> /* Second fb has different background so CRC does not match. */
> fb_id = igt_create_color_pattern_fb(data->drm_fd, width, mode->vdisplay,
> data->testformat, tiling[1],
> - 0.5, 0.5, 0.5, &fb[1]);
> + 0.5, 0.5, 0.5, &data->fb[1]);
> igt_assert(fb_id);
>
> /* Set the crtc and generate a reference CRC. */
> - igt_plane_set_fb(primary, &fb[1]);
> + igt_plane_set_fb(primary, &data->fb[1]);
> igt_display_commit(&data->display);
> igt_pipe_crc_collect_crc(pipe_crc, &reference_crc);
>
> /* Commit the first fb. */
> - igt_plane_set_fb(primary, &fb[0]);
> + igt_plane_set_fb(primary, &data->fb[0]);
> igt_display_commit(&data->display);
>
> /* Flip to the second fb. */
> ret = drmModePageFlip(data->drm_fd, output->config.crtc->crtc_id,
> - fb[1].fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
> + data->fb[1].fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
> /*
> * Page flip should work but some transitions may be temporarily
> * on some kernels.
> @@ -137,6 +137,12 @@ test_flip_tiling(data_t *data, enum pipe pipe, igt_output_t *output, uint64_t ti
> /* Get a crc and compare with the reference. */
> igt_pipe_crc_collect_crc(pipe_crc, &crc);
> igt_assert_crc_equal(&reference_crc, &crc);
> +}
> +
> +static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
> +{
> + igt_plane_t *primary;
> + primary = igt_output_get_plane(output, 0);
>
> /* Clean up. */
> igt_plane_set_fb(primary, NULL);
> @@ -144,8 +150,8 @@ test_flip_tiling(data_t *data, enum pipe pipe, igt_output_t *output, uint64_t ti
> igt_output_set_pipe(output, PIPE_ANY);
> igt_display_commit(&data->display);
>
> - igt_remove_fb(data->drm_fd, &fb[0]);
> - igt_remove_fb(data->drm_fd, &fb[1]);
> + igt_remove_fb(data->drm_fd, &data->fb[0]);
> + igt_remove_fb(data->drm_fd, &data->fb[1]);
> }
>
> static data_t data;
> @@ -185,6 +191,7 @@ igt_main
> for_each_pipe_with_valid_output(&data.display, pipe, output) {
> igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> test_flip_tiling(&data, pipe, output, tiling);
> + test_cleanup(&data, pipe, output);
> }
> }
>
> @@ -204,6 +211,7 @@ igt_main
> for_each_pipe_with_valid_output(&data.display, pipe, output) {
> igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> test_flip_tiling(&data, pipe, output, tiling);
> + test_cleanup(&data, pipe, output);
> }
> }
>
> @@ -223,6 +231,7 @@ igt_main
> for_each_pipe_with_valid_output(&data.display, pipe, output) {
> igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> test_flip_tiling(&data, pipe, output, tiling);
> + test_cleanup(&data, pipe, output);
> }
> }
>
> @@ -246,6 +255,7 @@ igt_main
> for_each_pipe_with_valid_output(&data.display, pipe, output) {
> igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> test_flip_tiling(&data, pipe, output, tiling);
> + test_cleanup(&data, pipe, output);
> }
> }
>
> @@ -265,6 +275,7 @@ igt_main
> for_each_pipe_with_valid_output(&data.display, pipe, output) {
> igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> test_flip_tiling(&data, pipe, output, tiling);
> + test_cleanup(&data, pipe, output);
> }
> }
>
> @@ -284,6 +295,7 @@ igt_main
> for_each_pipe_with_valid_output(&data.display, pipe, output) {
> igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> test_flip_tiling(&data, pipe, output, tiling);
> + test_cleanup(&data, pipe, output);
> }
> }
>
> @@ -307,6 +319,7 @@ igt_main
> for_each_pipe_with_valid_output(&data.display, pipe, output) {
> igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> test_flip_tiling(&data, pipe, output, tiling);
> + test_cleanup(&data, pipe, output);
> }
> }
>
> @@ -326,6 +339,7 @@ igt_main
> for_each_pipe_with_valid_output(&data.display, pipe, output) {
> igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> test_flip_tiling(&data, pipe, output, tiling);
> + test_cleanup(&data, pipe, output);
> }
> }
>
> @@ -345,6 +359,7 @@ igt_main
> for_each_pipe_with_valid_output(&data.display, pipe, output) {
> igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> test_flip_tiling(&data, pipe, output, tiling);
> + test_cleanup(&data, pipe, output);
> }
Check the indentation on these. This indentation makes it look like
test_cleanup call is inside igt_dynamic, but it isn't.
--
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_flip_tiling: Fix clean up when subtest fails
2021-05-18 17:02 [igt-dev] [PATCH i-g-t] tests/kms_flip_tiling: Fix clean up when subtest fails Jeevan B
2021-05-18 17:56 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-05-19 8:24 ` [igt-dev] [PATCH i-g-t] " Petri Latvala
@ 2021-05-19 13:54 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2021-05-19 13:54 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 30272 bytes --]
== Series Details ==
Series: tests/kms_flip_tiling: Fix clean up when subtest fails
URL : https://patchwork.freedesktop.org/series/90297/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_10098_full -> IGTPW_5821_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/index.html
Known issues
------------
Here are the changes found in IGTPW_5821_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_allocator@execbuf-with-allocator:
- shard-kbl: NOTRUN -> [DMESG-WARN][1] ([i915#3457]) +4 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl2/igt@api_intel_allocator@execbuf-with-allocator.html
* igt@api_intel_bb@delta-check:
- shard-glk: NOTRUN -> [DMESG-FAIL][2] ([i915#3457])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk7/igt@api_intel_bb@delta-check.html
- shard-iclb: NOTRUN -> [DMESG-WARN][3] ([i915#3457]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb3/igt@api_intel_bb@delta-check.html
- shard-tglb: NOTRUN -> [DMESG-WARN][4] ([i915#3457])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb8/igt@api_intel_bb@delta-check.html
* igt@drm_read@fault-buffer:
- shard-apl: NOTRUN -> [DMESG-WARN][5] ([i915#3457]) +2 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl7/igt@drm_read@fault-buffer.html
* igt@feature_discovery@chamelium:
- shard-tglb: NOTRUN -> [SKIP][6] ([fdo#111827])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb3/igt@feature_discovery@chamelium.html
- shard-iclb: NOTRUN -> [SKIP][7] ([fdo#111827])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb5/igt@feature_discovery@chamelium.html
* igt@feature_discovery@display-4x:
- shard-tglb: NOTRUN -> [SKIP][8] ([i915#1839]) +1 similar issue
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb1/igt@feature_discovery@display-4x.html
- shard-iclb: NOTRUN -> [SKIP][9] ([i915#1839]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb1/igt@feature_discovery@display-4x.html
* igt@gem_create@create-massive:
- shard-iclb: NOTRUN -> [DMESG-WARN][10] ([i915#3002])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb1/igt@gem_create@create-massive.html
- shard-kbl: NOTRUN -> [DMESG-WARN][11] ([i915#3002])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl2/igt@gem_create@create-massive.html
- shard-tglb: NOTRUN -> [DMESG-WARN][12] ([i915#3002])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb3/igt@gem_create@create-massive.html
- shard-glk: NOTRUN -> [DMESG-WARN][13] ([i915#3002])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk6/igt@gem_create@create-massive.html
* igt@gem_ctx_engines@invalid-engines:
- shard-apl: NOTRUN -> [INCOMPLETE][14] ([i915#3457] / [i915#3468])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl7/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@idempotent:
- shard-snb: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#1099]) +3 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-snb2/igt@gem_ctx_persistence@idempotent.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-iclb: NOTRUN -> [TIMEOUT][16] ([i915#3070] / [i915#3457])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb6/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_exec_fair@basic-deadline:
- shard-apl: NOTRUN -> [FAIL][17] ([i915#3457])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl6/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-flow@rcs0:
- shard-tglb: NOTRUN -> [FAIL][18] ([i915#2842] / [i915#3457]) +5 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb3/igt@gem_exec_fair@basic-flow@rcs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglb: [PASS][19] -> [FAIL][20] ([i915#2842] / [i915#3457])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-kbl: NOTRUN -> [FAIL][21] ([i915#2842] / [i915#3457])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-kbl: [PASS][22] -> [SKIP][23] ([fdo#109271] / [i915#3457])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-iclb: NOTRUN -> [FAIL][24] ([i915#2842] / [i915#3457]) +4 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-kbl: [PASS][25] -> [FAIL][26] ([i915#2842] / [i915#3457]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-kbl3/igt@gem_exec_fair@basic-pace@vecs0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fence@keep-in-fence@vcs0:
- shard-glk: [PASS][27] -> [INCOMPLETE][28] ([i915#3457])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-glk4/igt@gem_exec_fence@keep-in-fence@vcs0.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk3/igt@gem_exec_fence@keep-in-fence@vcs0.html
* igt@gem_exec_params@no-blt:
- shard-iclb: NOTRUN -> [SKIP][29] ([fdo#109283])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb6/igt@gem_exec_params@no-blt.html
* igt@gem_exec_schedule@preemptive-hang@rcs0:
- shard-glk: [PASS][30] -> [FAIL][31] ([i915#3457]) +22 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-glk1/igt@gem_exec_schedule@preemptive-hang@rcs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk1/igt@gem_exec_schedule@preemptive-hang@rcs0.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-tglb: [PASS][32] -> [INCOMPLETE][33] ([i915#2910] / [i915#3468])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-tglb1/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb7/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-iclb: [PASS][34] -> [FAIL][35] ([i915#2428])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-iclb7/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb6/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent:
- shard-tglb: NOTRUN -> [INCOMPLETE][36] ([i915#3468]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb1/igt@gem_mmap_gtt@fault-concurrent.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-snb: NOTRUN -> [INCOMPLETE][37] ([i915#3468]) +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html
- shard-kbl: NOTRUN -> [INCOMPLETE][38] ([i915#3468]) +2 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl4/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_pwrite@basic-exhaustion:
- shard-apl: NOTRUN -> [WARN][39] ([i915#2658])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][40] ([i915#3468]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk8/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-apl: NOTRUN -> [INCOMPLETE][41] ([i915#3468])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl6/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-iclb: NOTRUN -> [SKIP][42] ([i915#768]) +3 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-iclb: NOTRUN -> [INCOMPLETE][43] ([i915#3468]) +2 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
- shard-glk: NOTRUN -> [INCOMPLETE][44] ([i915#3457] / [i915#3468])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk8/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
- shard-tglb: NOTRUN -> [INCOMPLETE][45] ([i915#3457] / [i915#3468])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb1/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-tglb: NOTRUN -> [SKIP][46] ([fdo#109312])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb8/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglb: NOTRUN -> [SKIP][47] ([i915#3297]) +2 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb8/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@input-checking:
- shard-snb: NOTRUN -> [DMESG-WARN][48] ([i915#3002])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-snb7/igt@gem_userptr_blits@input-checking.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-iclb: NOTRUN -> [SKIP][49] ([i915#3297]) +4 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb3/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_watchdog@default-physical:
- shard-snb: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3457]) +39 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-snb5/igt@gem_watchdog@default-physical.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-kbl: NOTRUN -> [DMESG-WARN][51] ([i915#180] / [i915#3457]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen3_render_linear_blits:
- shard-tglb: NOTRUN -> [SKIP][52] ([fdo#109289]) +3 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb7/igt@gen3_render_linear_blits.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109289]) +3 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb3/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@allowed-all:
- shard-iclb: NOTRUN -> [SKIP][54] ([fdo#112306]) +4 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-large:
- shard-apl: NOTRUN -> [FAIL][55] ([i915#3296])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl7/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglb: NOTRUN -> [SKIP][56] ([fdo#112306]) +2 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb6/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_hangman@engine-error@vecs0:
- shard-kbl: NOTRUN -> [SKIP][57] ([fdo#109271]) +211 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl6/igt@i915_hangman@engine-error@vecs0.html
* igt@i915_hangman@engine-hang@vecs0:
- shard-apl: NOTRUN -> [DMESG-FAIL][58] ([i915#3457]) +2 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl7/igt@i915_hangman@engine-hang@vecs0.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglb: NOTRUN -> [SKIP][59] ([i915#3288])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb7/igt@i915_pm_dc@dc9-dpms.html
- shard-iclb: NOTRUN -> [FAIL][60] ([i915#3343])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-snb: NOTRUN -> [DMESG-WARN][61] ([i915#3457])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-snb5/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@gem-mmap-type@uc:
- shard-apl: NOTRUN -> [DMESG-WARN][62] ([i915#3475])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl7/igt@i915_pm_rpm@gem-mmap-type@uc.html
* igt@i915_pm_rpm@gem-mmap-type@wc:
- shard-iclb: [PASS][63] -> [DMESG-WARN][64] ([i915#3457]) +1 similar issue
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-iclb5/igt@i915_pm_rpm@gem-mmap-type@wc.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb3/igt@i915_pm_rpm@gem-mmap-type@wc.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-iclb: NOTRUN -> [SKIP][65] ([fdo#110725] / [fdo#111614]) +6 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb5/igt@kms_big_fb@linear-16bpp-rotate-90.html
- shard-tglb: NOTRUN -> [SKIP][66] ([fdo#111614]) +3 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb6/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-tglb: NOTRUN -> [SKIP][67] ([fdo#111615]) +4 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_joiner@invalid-modeset:
- shard-iclb: NOTRUN -> [SKIP][68] ([i915#2705])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb7/igt@kms_big_joiner@invalid-modeset.html
- shard-kbl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#2705])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl6/igt@kms_big_joiner@invalid-modeset.html
- shard-glk: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#2705])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk6/igt@kms_big_joiner@invalid-modeset.html
- shard-tglb: NOTRUN -> [SKIP][71] ([i915#2705])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb2/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic:
- shard-glk: NOTRUN -> [FAIL][72] ([fdo#108145])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic.html
* igt@kms_chamelium@dp-edid-change-during-suspend:
- shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [fdo#111827]) +10 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl6/igt@kms_chamelium@dp-edid-change-during-suspend.html
* igt@kms_chamelium@hdmi-hpd-with-enabled-mode:
- shard-snb: NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111827]) +13 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium@vga-hpd-enable-disable-mode:
- shard-glk: NOTRUN -> [SKIP][75] ([fdo#109271] / [fdo#111827]) +14 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk3/igt@kms_chamelium@vga-hpd-enable-disable-mode.html
* igt@kms_color@pipe-b-degamma:
- shard-tglb: NOTRUN -> [FAIL][76] ([i915#1149])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb8/igt@kms_color@pipe-b-degamma.html
- shard-glk: NOTRUN -> [FAIL][77] ([i915#71])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk1/igt@kms_color@pipe-b-degamma.html
- shard-iclb: NOTRUN -> [FAIL][78] ([i915#1149])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb3/igt@kms_color@pipe-b-degamma.html
* igt@kms_color@pipe-d-ctm-0-25:
- shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109278] / [i915#1149]) +3 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb8/igt@kms_color@pipe-d-ctm-0-25.html
* igt@kms_color_chamelium@pipe-a-ctm-0-75:
- shard-kbl: NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +23 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl6/igt@kms_color_chamelium@pipe-a-ctm-0-75.html
* igt@kms_color_chamelium@pipe-b-ctm-0-75:
- shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109284] / [fdo#111827]) +13 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb7/igt@kms_color_chamelium@pipe-b-ctm-0-75.html
* igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
- shard-iclb: NOTRUN -> [SKIP][82] ([fdo#109284] / [fdo#111827]) +13 similar issues
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb8/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
* igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
- shard-iclb: NOTRUN -> [SKIP][83] ([fdo#109278] / [fdo#109284] / [fdo#111827])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb3/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html
* igt@kms_content_protection@atomic:
- shard-iclb: NOTRUN -> [SKIP][84] ([fdo#109300] / [fdo#111066])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb3/igt@kms_content_protection@atomic.html
- shard-apl: NOTRUN -> [TIMEOUT][85] ([i915#1319])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-iclb: NOTRUN -> [SKIP][86] ([i915#3116]) +1 similar issue
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb3/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglb: NOTRUN -> [SKIP][87] ([i915#3116]) +1 similar issue
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb8/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@pipe-a-cursor-256x256-random:
- shard-snb: NOTRUN -> [FAIL][88] ([i915#3457]) +3 similar issues
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-snb7/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html
* igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:
- shard-tglb: NOTRUN -> [SKIP][89] ([i915#3319] / [i915#3457]) +3 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb3/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html
* igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen:
- shard-glk: [PASS][90] -> [FAIL][91] ([i915#3444] / [i915#3457]) +4 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-glk6/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk3/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html
- shard-tglb: [PASS][92] -> [FAIL][93] ([i915#2124] / [i915#3457]) +1 similar issue
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-tglb3/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-64x21-offscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-128x128-onscreen:
- shard-iclb: NOTRUN -> [FAIL][94] ([i915#3457]) +11 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb7/igt@kms_cursor_crc@pipe-b-cursor-128x128-onscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-256x256-onscreen:
- shard-apl: NOTRUN -> [FAIL][95] ([i915#3444] / [i915#3457]) +2 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-256x256-onscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-512x170-offscreen:
- shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109278] / [fdo#109279] / [i915#3457]) +5 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-512x170-offscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen:
- shard-kbl: [PASS][97] -> [FAIL][98] ([i915#3444] / [i915#3457]) +1 similar issue
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-64x21-offscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen:
- shard-kbl: NOTRUN -> [FAIL][99] ([i915#3444] / [i915#3457]) +14 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-64x21-random:
- shard-apl: [PASS][100] -> [FAIL][101] ([i915#3444] / [i915#3457]) +1 similar issue
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-64x21-random.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-64x21-random.html
* igt@kms_cursor_crc@pipe-b-cursor-64x64-random:
- shard-glk: NOTRUN -> [FAIL][102] ([i915#3444] / [i915#3457]) +9 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-64x64-random.html
* igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][103] ([i915#3359] / [i915#3457]) +7 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement.html
* igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen:
- shard-tglb: NOTRUN -> [FAIL][104] ([i915#2124] / [i915#3457]) +11 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-128x128-offscreen:
- shard-kbl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#3457]) +33 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl3/igt@kms_cursor_crc@pipe-d-cursor-128x128-offscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-256x85-rapid-movement:
- shard-glk: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#3457]) +27 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk7/igt@kms_cursor_crc@pipe-d-cursor-256x85-rapid-movement.html
* igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement:
- shard-iclb: NOTRUN -> [SKIP][107] ([fdo#109278] / [i915#3457]) +21 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb6/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html
* igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen:
- shard-tglb: NOTRUN -> [SKIP][108] ([fdo#109279] / [i915#3359] / [i915#3457]) +7 similar issues
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-size-change:
- shard-apl: NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#3457]) +17 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl6/igt@kms_cursor_crc@pipe-d-cursor-size-change.html
* igt@kms_cursor_edge_walk@pipe-b-128x128-top-edge:
- shard-glk: [PASS][110] -> [FAIL][111] ([i915#70]) +1 similar issue
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-glk6/igt@kms_cursor_edge_walk@pipe-b-128x128-top-edge.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk2/igt@kms_cursor_edge_walk@pipe-b-128x128-top-edge.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge:
- shard-iclb: NOTRUN -> [SKIP][112] ([fdo#109278]) +17 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb6/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-iclb: NOTRUN -> [SKIP][113] ([fdo#109274] / [fdo#109278]) +4 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@pipe-d-torture-bo:
- shard-kbl: NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#533])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl4/igt@kms_cursor_legacy@pipe-d-torture-bo.html
* igt@kms_dp_dsc@basic-dsc-enable-dp:
- shard-tglb: NOTRUN -> [SKIP][115] ([fdo#109349])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-iclb: NOTRUN -> [SKIP][116] ([fdo#109274]) +6 similar issues
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb7/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglb: NOTRUN -> [SKIP][117] ([fdo#111825]) +53 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb7/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
- shard-kbl: NOTRUN -> [DMESG-WARN][118] ([i915#180]) +3 similar issues
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
* igt@kms_flip@flip-vs-suspend@a-dp1:
- shard-kbl: NOTRUN -> [INCOMPLETE][119] ([i915#155] / [i915#180])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl2/igt@kms_flip@flip-vs-suspend@a-dp1.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-iclb: NOTRUN -> [SKIP][120] ([fdo#109285])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb7/igt@kms_force_connector_basic@force-load-detect.html
- shard-tglb: NOTRUN -> [SKIP][121] ([fdo#109285])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb3/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-iclb: NOTRUN -> [SKIP][122] ([fdo#109280]) +47 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-glk: NOTRUN -> [SKIP][123] ([fdo#109271]) +131 similar issues
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@static-toggle:
- shard-iclb: NOTRUN -> [SKIP][124] ([i915#1187]) +1 similar issue
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-iclb5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglb: NOTRUN -> [SKIP][125] ([i915#1187]) +1 similar issue
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-tglb8/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pipe_crc_basic@read-crc-pipe-d:
- shard-apl: NOTRUN -> [SKIP][126] ([fdo#109271] / [i915#533])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
- shard-glk: [PASS][127] -> [FAIL][128] ([i915#53])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10098/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
* igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][129] ([fdo#108145] / [i915#265]) +1 similar issue
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk8/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-7efc:
- shard-apl: NOTRUN -> [FAIL][130] ([fdo#108145] / [i915#265])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-apl7/igt@kms_plane_alpha_blend@pipe-b-alpha-7efc.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
- shard-kbl: NOTRUN -> [FAIL][131] ([fdo#108145] / [i915#265]) +1 similar issue
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][132] ([i915#265])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
- shard-apl
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5821/index.html
[-- Attachment #1.2: Type: text/html, Size: 34008 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] 4+ messages in thread
end of thread, other threads:[~2021-05-19 13:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-18 17:02 [igt-dev] [PATCH i-g-t] tests/kms_flip_tiling: Fix clean up when subtest fails Jeevan B
2021-05-18 17:56 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-05-19 8:24 ` [igt-dev] [PATCH i-g-t] " Petri Latvala
2021-05-19 13:54 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox