* [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane: Don't test all format+modifier combinations
@ 2021-03-29 19:00 Ville Syrjala
2021-03-29 19:00 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Remove pixel-format-pipe-A* from the pre-merge blacklist Ville Syrjala
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Ville Syrjala @ 2021-03-29 19:00 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
When running the non-extended tests let's use igt_reduce_format()
and test each format "class" only once for each modifier except
linear. This follows the earlier pattern of doing all the YCbCr
limited vs. full range tests only for linear and skipping for
other modifiers.
This should maintian sufficient coverage to catch most watermark
related bugs and whatnot.
On icl:
$ time kms_plane --r pixel-format-pipe-A-planes
- real 0m9.390s
+ real 0m7.244s
Full run of all pixel-format* tests on the same machine
goes from ~58 seconds down to ~38 seconds.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
tests/kms_plane.c | 72 ++++++++++++++++++++++++++++++++---------------
1 file changed, 50 insertions(+), 22 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index c87983a4e539..44ee63a52b2d 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -25,6 +25,7 @@
*/
#include "igt.h"
+#include "igt_vec.h"
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
@@ -816,16 +817,21 @@ enum crc_set { PACKED_CRC_SET,
PLANAR_CRC_SET,
MAX_CRC_SET };
+struct format_mod {
+ uint64_t modifier;
+ uint32_t format;
+};
+
static bool test_format_plane(data_t *data, enum pipe pipe,
igt_output_t *output, igt_plane_t *plane, igt_fb_t *primary_fb)
{
struct igt_fb fb = {};
struct igt_fb *clear_fb = plane->type == DRM_PLANE_TYPE_PRIMARY ? primary_fb : NULL;
drmModeModeInfo *mode;
- uint32_t format, ref_format;
- uint64_t modifier, ref_modifier;
uint64_t width, height;
igt_crc_t ref_crc[MAX_CRC_SET][ARRAY_SIZE(colors_extended)];
+ struct igt_vec tested_formats;
+ struct format_mod ref = {};
igt_crc_t* crcset;
bool result = true;
@@ -835,12 +841,14 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
if (data->crop != 0 && plane->type == DRM_PLANE_TYPE_CURSOR)
return true;
+ igt_vec_init(&tested_formats, sizeof(struct format_mod));
+
mode = igt_output_get_mode(output);
if (plane->type != DRM_PLANE_TYPE_CURSOR) {
width = mode->hdisplay;
height = mode->vdisplay;
- ref_format = format = DRM_FORMAT_XRGB8888;
- ref_modifier = modifier = DRM_FORMAT_MOD_NONE;
+ ref.format = DRM_FORMAT_XRGB8888;
+ ref.modifier = DRM_FORMAT_MOD_NONE;
} else {
if (!plane->drm_plane) {
igt_debug("Only legacy cursor ioctl supported, skipping cursor plane\n");
@@ -848,8 +856,8 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
}
do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_WIDTH, &width));
do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_HEIGHT, &height));
- ref_format = format = DRM_FORMAT_ARGB8888;
- ref_modifier = modifier = DRM_FORMAT_MOD_NONE;
+ ref.format = DRM_FORMAT_ARGB8888;
+ ref.modifier = DRM_FORMAT_MOD_NONE;
}
igt_debug("Testing connector %s on %s plane %s.%u\n",
@@ -859,15 +867,15 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
igt_pipe_crc_start(data->pipe_crc);
igt_info("Testing format " IGT_FORMAT_FMT " / modifier 0x%" PRIx64 " on %s.%u\n",
- IGT_FORMAT_ARGS(format), modifier,
+ IGT_FORMAT_ARGS(ref.format), ref.modifier,
kmstest_pipe_name(pipe), plane->index);
if (data->display.is_atomic) {
struct igt_fb test_fb;
int ret;
- igt_create_fb(data->drm_fd, 64, 64, format,
- LOCAL_DRM_FORMAT_MOD_NONE, &test_fb);
+ igt_create_fb(data->drm_fd, 64, 64, ref.format,
+ DRM_FORMAT_MOD_LINEAR, &test_fb);
igt_plane_set_fb(plane, &test_fb);
@@ -885,12 +893,12 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
igt_remove_fb(data->drm_fd, &test_fb);
}
- capture_format_crcs_packed(data, pipe, plane, format, modifier,
+ capture_format_crcs_packed(data, pipe, plane, ref.format, ref.modifier,
width, height, IGT_COLOR_YCBCR_BT709,
IGT_COLOR_YCBCR_LIMITED_RANGE,
ref_crc[PACKED_CRC_SET], &fb);
- capture_format_crcs_planar(data, pipe, plane, format, modifier,
+ capture_format_crcs_planar(data, pipe, plane, ref.format, ref.modifier,
width, height, IGT_COLOR_YCBCR_BT709,
IGT_COLOR_YCBCR_LIMITED_RANGE,
ref_crc[PLANAR_CRC_SET], &fb);
@@ -903,36 +911,54 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
igt_require(num_unique_crcs(ref_crc[PLANAR_CRC_SET], data->num_colors) > 1);
for (int i = 0; i < plane->format_mod_count; i++) {
- format = plane->formats[i];
- modifier = plane->modifiers[i];
+ struct format_mod f = {
+ .format = plane->formats[i],
+ .modifier = plane->modifiers[i],
+ };
- if (format == ref_format &&
- modifier == ref_modifier)
+ if (f.format == ref.format &&
+ f.modifier == ref.modifier)
continue;
- if (format == DRM_FORMAT_C8) {
+ /* test each format "class" only once in non-extended tests */
+ if (!data->extended && f.modifier != DRM_FORMAT_MOD_LINEAR) {
+ uint32_t format = f.format;
+
+ f.format = igt_reduce_format(f.format);
+
+ if (igt_vec_index(&tested_formats, &f) >= 0) {
+ igt_info("Skipping format " IGT_FORMAT_FMT " / modifier 0x%" PRIx64 " on %s.%u\n",
+ IGT_FORMAT_ARGS(format), f.modifier,
+ kmstest_pipe_name(pipe), plane->index);
+ continue;
+ }
+
+ igt_vec_push(&tested_formats, &f);
+ }
+
+ if (f.format == DRM_FORMAT_C8) {
if (!set_c8_legacy_lut(data, pipe, LUT_MASK))
continue;
} else {
- if (!igt_fb_supported_format(format))
+ if (!igt_fb_supported_format(f.format))
continue;
}
- crcset = ref_crc[(igt_format_is_yuv_semiplanar(format)
+ crcset = ref_crc[(igt_format_is_yuv_semiplanar(f.format)
? PLANAR_CRC_SET : PACKED_CRC_SET)];
- if (igt_format_is_yuv(format))
+ if (igt_format_is_yuv(f.format))
result &= test_format_plane_yuv(data, pipe, plane,
- format, modifier,
+ f.format, f.modifier,
width, height,
crcset, &fb);
else
result &= test_format_plane_rgb(data, pipe, plane,
- format, modifier,
+ f.format, f.modifier,
width, height,
crcset, &fb);
- if (format == DRM_FORMAT_C8)
+ if (f.format == DRM_FORMAT_C8)
set_legacy_lut(data, pipe, LUT_MASK);
}
@@ -941,6 +967,8 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
igt_plane_set_fb(plane, clear_fb);
igt_remove_fb(data->drm_fd, &fb);
+ igt_vec_fini(&tested_formats);
+
return result;
}
--
2.26.2
_______________________________________________
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] [PATCH i-g-t 2/2] intel-ci: Remove pixel-format-pipe-A* from the pre-merge blacklist 2021-03-29 19:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane: Don't test all format+modifier combinations Ville Syrjala @ 2021-03-29 19:00 ` Ville Syrjala 2021-03-30 4:08 ` Petri Latvala 2021-03-29 19:34 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_plane: Don't test all format+modifier combinations Patchwork ` (4 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Ville Syrjala @ 2021-03-29 19:00 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> We've had several watermark bugs slip through the net with all the pixel format test being blacklisted. Let's run these on one pipe so that we might catch at least some of the bugs. This will cost us only ~15 seconds on icl these days. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- tests/intel-ci/blacklist-pre-merge.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intel-ci/blacklist-pre-merge.txt b/tests/intel-ci/blacklist-pre-merge.txt index cddb77c1f303..6363a7ac86dc 100644 --- a/tests/intel-ci/blacklist-pre-merge.txt +++ b/tests/intel-ci/blacklist-pre-merge.txt @@ -170,7 +170,7 @@ igt@gem_tiled_wc # # Data acquired on 2020-02-20 by Martin Peres ############################################################################### -igt@kms_plane@pixel-format-pipe-[a-d]-planes(-source-clamping)? +igt@kms_plane@pixel-format-pipe-[b-d]-planes(-source-clamping)? ############################################################################### -- 2.26.2 _______________________________________________ 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 2/2] intel-ci: Remove pixel-format-pipe-A* from the pre-merge blacklist 2021-03-29 19:00 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Remove pixel-format-pipe-A* from the pre-merge blacklist Ville Syrjala @ 2021-03-30 4:08 ` Petri Latvala 0 siblings, 0 replies; 9+ messages in thread From: Petri Latvala @ 2021-03-30 4:08 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev On Mon, Mar 29, 2021 at 10:00:16PM +0300, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > We've had several watermark bugs slip through the net with all > the pixel format test being blacklisted. Let's run these on > one pipe so that we might catch at least some of the bugs. > This will cost us only ~15 seconds on icl these days. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Acked-by: Petri Latvala <petri.latvala@intel.com> > --- > tests/intel-ci/blacklist-pre-merge.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/intel-ci/blacklist-pre-merge.txt b/tests/intel-ci/blacklist-pre-merge.txt > index cddb77c1f303..6363a7ac86dc 100644 > --- a/tests/intel-ci/blacklist-pre-merge.txt > +++ b/tests/intel-ci/blacklist-pre-merge.txt > @@ -170,7 +170,7 @@ igt@gem_tiled_wc > # > # Data acquired on 2020-02-20 by Martin Peres > ############################################################################### > -igt@kms_plane@pixel-format-pipe-[a-d]-planes(-source-clamping)? > +igt@kms_plane@pixel-format-pipe-[b-d]-planes(-source-clamping)? > > > ############################################################################### > -- > 2.26.2 > > _______________________________________________ > 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] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_plane: Don't test all format+modifier combinations 2021-03-29 19:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane: Don't test all format+modifier combinations Ville Syrjala 2021-03-29 19:00 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Remove pixel-format-pipe-A* from the pre-merge blacklist Ville Syrjala @ 2021-03-29 19:34 ` Patchwork 2021-03-29 22:02 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-03-29 19:34 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 3345 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_plane: Don't test all format+modifier combinations URL : https://patchwork.freedesktop.org/series/88554/ State : success == Summary == CI Bug Log - changes from CI_DRM_9913 -> IGTPW_5674 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/index.html Known issues ------------ Here are the changes found in IGTPW_5674 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_basic@create-close: - fi-tgl-y: [PASS][1] -> [DMESG-WARN][2] ([i915#402]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/fi-tgl-y/igt@gem_basic@create-close.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/fi-tgl-y/igt@gem_basic@create-close.html * igt@runner@aborted: - fi-bdw-5557u: NOTRUN -> [FAIL][3] ([i915#1602] / [i915#2029]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/fi-bdw-5557u/igt@runner@aborted.html #### Possible fixes #### * igt@gem_flink_basic@basic: - fi-tgl-y: [DMESG-WARN][4] ([i915#402]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/fi-tgl-y/igt@gem_flink_basic@basic.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/fi-tgl-y/igt@gem_flink_basic@basic.html * igt@i915_selftest@live@hangcheck: - {fi-hsw-gt1}: [DMESG-WARN][6] ([i915#3303]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html #### Warnings #### * igt@i915_module_load@reload: - fi-glk-dsi: [DMESG-WARN][8] ([i915#1982] / [i915#3143]) -> [DMESG-WARN][9] ([i915#3143]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/fi-glk-dsi/igt@i915_module_load@reload.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/fi-glk-dsi/igt@i915_module_load@reload.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#3143]: https://gitlab.freedesktop.org/drm/intel/issues/3143 [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (44 -> 39) ------------------------------ 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_6047 -> IGTPW_5674 CI-20190529: 20190529 CI_DRM_9913: ab92249bc0afed969efb75b896574b47ae2c9b00 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5674: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/index.html IGT_6047: 3887134e739f480cefe1dc7f13eb54f7bf3ca27f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/index.html [-- Attachment #1.2: Type: text/html, Size: 4197 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 series starting with [i-g-t,1/2] tests/kms_plane: Don't test all format+modifier combinations 2021-03-29 19:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane: Don't test all format+modifier combinations Ville Syrjala 2021-03-29 19:00 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Remove pixel-format-pipe-A* from the pre-merge blacklist Ville Syrjala 2021-03-29 19:34 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_plane: Don't test all format+modifier combinations Patchwork @ 2021-03-29 22:02 ` Patchwork 2021-04-07 15:27 ` [igt-dev] [PATCH i-g-t v2 1/2] " Ville Syrjala ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-03-29 22:02 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30310 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_plane: Don't test all format+modifier combinations URL : https://patchwork.freedesktop.org/series/88554/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9913_full -> IGTPW_5674_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5674_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5674_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_5674/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5674_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping: - shard-snb: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-snb2/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html Known issues ------------ Here are the changes found in IGTPW_5674_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-apl: NOTRUN -> [DMESG-WARN][2] ([i915#180]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl8/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +7 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-snb7/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@engines: - shard-tglb: NOTRUN -> [SKIP][4] ([i915#280]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb1/igt@gem_ctx_sseu@engines.html * igt@gem_exec_fair@basic-deadline: - shard-kbl: [PASS][5] -> [FAIL][6] ([i915#2846]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl3/igt@gem_exec_fair@basic-deadline.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglb: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb3/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-kbl: [PASS][11] -> [SKIP][12] ([fdo#109271]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl6/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-glk2/igt@gem_exec_fair@basic-pace@vecs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#2849]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#2190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl2/igt@gem_huc_copy@huc-copy.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#307]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-glk6/igt@gem_mmap_gtt@cpuset-big-copy.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-glk2/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-iclb: [PASS][20] -> [FAIL][21] ([i915#307]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_userptr_blits@input-checking: - shard-kbl: NOTRUN -> [DMESG-WARN][22] ([i915#3002]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl1/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@process-exit-mmap-busy@gtt: - shard-iclb: NOTRUN -> [SKIP][23] ([i915#1699]) +3 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb6/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html * igt@gem_userptr_blits@process-exit-mmap-busy@uc: - shard-tglb: NOTRUN -> [SKIP][24] ([i915#1699]) +3 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb6/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html - shard-kbl: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#1699]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl4/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html * igt@gem_userptr_blits@process-exit-mmap-busy@wc: - shard-apl: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1699]) +3 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl6/igt@gem_userptr_blits@process-exit-mmap-busy@wc.html - shard-glk: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#1699]) +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-glk7/igt@gem_userptr_blits@process-exit-mmap-busy@wc.html * igt@gem_userptr_blits@set-cache-level: - shard-snb: NOTRUN -> [FAIL][28] ([i915#3324]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-snb5/igt@gem_userptr_blits@set-cache-level.html * igt@gen9_exec_parse@bb-large: - shard-apl: NOTRUN -> [FAIL][29] ([i915#3296]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl2/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@secure-batches: - shard-iclb: NOTRUN -> [SKIP][30] ([fdo#112306]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb6/igt@gen9_exec_parse@secure-batches.html - shard-tglb: NOTRUN -> [SKIP][31] ([fdo#112306]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb6/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_dc@dc6-dpms: - shard-kbl: NOTRUN -> [FAIL][32] ([i915#454]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][33] ([fdo#109271]) +5 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-glk9/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109293] / [fdo#109506]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-tglb: NOTRUN -> [SKIP][35] ([fdo#109506] / [i915#2411]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-apl: NOTRUN -> [SKIP][36] ([fdo#109271]) +186 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [PASS][37] -> [FAIL][38] ([i915#2574]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-tglb8/igt@kms_async_flips@test-time-stamp.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb6/igt@kms_async_flips@test-time-stamp.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#110725] / [fdo#111614]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb2/igt@kms_big_fb@linear-64bpp-rotate-270.html - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#111614]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb7/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_ccs@pipe-d-missing-ccs-buffer: - shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109278]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb3/igt@kms_ccs@pipe-d-missing-ccs-buffer.html * igt@kms_chamelium@hdmi-edid-change-during-suspend: - shard-apl: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +24 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl8/igt@kms_chamelium@hdmi-edid-change-during-suspend.html * igt@kms_chamelium@vga-hpd-without-ddc: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109284] / [fdo#111827]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb5/igt@kms_chamelium@vga-hpd-without-ddc.html * igt@kms_color_chamelium@pipe-a-ctm-0-25: - shard-snb: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +19 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-snb2/igt@kms_color_chamelium@pipe-a-ctm-0-25.html * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +17 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl3/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-b-ctm-blue-to-red: - shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-glk6/igt@kms_color_chamelium@pipe-b-ctm-blue-to-red.html - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb8/igt@kms_color_chamelium@pipe-b-ctm-blue-to-red.html * igt@kms_content_protection@atomic: - shard-apl: NOTRUN -> [TIMEOUT][48] ([i915#1319]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl7/igt@kms_content_protection@atomic.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: NOTRUN -> [DMESG-WARN][49] ([i915#180]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_cursor_crc@pipe-b-cursor-suspend: - shard-apl: [PASS][50] -> [DMESG-WARN][51] ([i915#180]) +2 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html * igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen: - shard-tglb: NOTRUN -> [SKIP][52] ([fdo#109279]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109278] / [fdo#109279]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb7/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-tglb: NOTRUN -> [SKIP][54] ([fdo#111825]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109274] / [fdo#109278]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-tglb: NOTRUN -> [FAIL][56] ([i915#2346]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_dp_dsc@basic-dsc-enable-dp: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109349]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-dp.html * igt@kms_draw_crc@draw-method-rgb565-render-ytiled: - shard-glk: [PASS][58] -> [FAIL][59] ([i915#52] / [i915#54]) +5 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-glk7/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [PASS][60] -> [DMESG-WARN][61] ([i915#180]) +3 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-kbl: NOTRUN -> [SKIP][62] ([fdo#109271]) +185 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109280]) +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: - shard-snb: NOTRUN -> [SKIP][64] ([fdo#109271]) +377 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-snb2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d: - shard-apl: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#533]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl3/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-apl: NOTRUN -> [FAIL][66] ([fdo#108145] / [i915#265]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][67] ([fdo#108145] / [i915#265]) +3 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: - shard-apl: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#658]) +7 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html - shard-glk: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#658]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-glk5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5: - shard-kbl: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#658]) +3 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1: - shard-iclb: NOTRUN -> [SKIP][71] ([i915#658]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html * igt@kms_psr@psr2_primary_blt: - shard-iclb: [PASS][72] -> [SKIP][73] ([fdo#109441]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb2/igt@kms_psr@psr2_primary_blt.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb3/igt@kms_psr@psr2_primary_blt.html * igt@kms_sysfs_edid_timing: - shard-kbl: NOTRUN -> [FAIL][74] ([IGT#2]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl2/igt@kms_sysfs_edid_timing.html * igt@kms_vblank@pipe-d-wait-idle: - shard-kbl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#533]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl7/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-fb-id: - shard-apl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#2437]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl7/igt@kms_writeback@writeback-fb-id.html * igt@prime_nv_api@nv_i915_import_twice_check_flink_name: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109291]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb5/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2994]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl6/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-25: - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2994]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl4/igt@sysfs_clients@sema-25.html #### Possible fixes #### * igt@feature_discovery@psr2: - shard-iclb: [SKIP][80] ([i915#658]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb6/igt@feature_discovery@psr2.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb2/igt@feature_discovery@psr2.html * igt@gem_create@create-clear: - shard-glk: [FAIL][82] ([i915#1888] / [i915#3160]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-glk4/igt@gem_create@create-clear.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-glk8/igt@gem_create@create-clear.html * igt@gem_eio@unwedge-stress: - shard-iclb: [TIMEOUT][84] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb1/igt@gem_eio@unwedge-stress.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none@rcs0: - shard-kbl: [FAIL][86] ([i915#2842]) -> [PASS][87] +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl6/igt@gem_exec_fair@basic-none@rcs0.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl1/igt@gem_exec_fair@basic-none@rcs0.html - shard-glk: [FAIL][88] ([i915#2842]) -> [PASS][89] +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-glk7/igt@gem_exec_fair@basic-none@rcs0.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-glk5/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-iclb: [INCOMPLETE][90] ([i915#1895]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb2/igt@gem_exec_whisper@basic-queues-forked-all.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb3/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_mmap_gtt@big-copy-xy: - shard-iclb: [FAIL][92] ([i915#307]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb3/igt@gem_mmap_gtt@big-copy-xy.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb7/igt@gem_mmap_gtt@big-copy-xy.html * igt@kms_color@pipe-a-gamma: - shard-tglb: [FAIL][94] ([i915#1149]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-tglb7/igt@kms_color@pipe-a-gamma.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-tglb6/igt@kms_color@pipe-a-gamma.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-apl: [DMESG-WARN][96] ([i915#180]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_draw_crc@draw-method-rgb565-mmap-wc-untiled: - shard-glk: [FAIL][98] ([i915#52] / [i915#54]) -> [PASS][99] +5 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-glk4/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-untiled.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-glk5/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-untiled.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-kbl: [DMESG-WARN][100] ([i915#180]) -> [PASS][101] +7 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-suspend.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: [SKIP][102] ([fdo#109441]) -> [PASS][103] +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb7/igt@kms_psr@psr2_cursor_plane_move.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [DMESG-WARN][104] ([i915#180] / [i915#295]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html #### Warnings #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][106] ([i915#2852]) -> [FAIL][107] ([i915#2842]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb4/igt@gem_exec_fair@basic-none-rrul@rcs0.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_9913/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [SKIP][110] ([fdo#109349]) -> [DMESG-WARN][111] ([i915#1226]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb3/igt@kms_dp_dsc@basic-dsc-enable-edp.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: - shard-iclb: [SKIP][112] ([i915#2920]) -> [SKIP][113] ([i915#658]) +1 similar issue [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4: - shard-iclb: [SKIP][114] ([i915#658]) -> [SKIP][115] ([i915#2920]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html * igt@runner@aborted: - shard-kbl: ([FAIL][116], [FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#602]) -> ([FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#3002]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl4/igt@runner@aborted.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl3/igt@runner@aborted.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl3/igt@runner@aborted.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl7/igt@runner@aborted.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl2/igt@runner@aborted.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl6/igt@runner@aborted.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl7/igt@runner@aborted.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl3/igt@runner@aborted.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl7/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl3/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-kbl7/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl7/igt@runner@aborted.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl7/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl3/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl3/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl2/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl1/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-kbl7/igt@runner@aborted.html - shard-apl: ([FAIL][134], [FAIL][135]) ([i915#1814] / [i915#3002]) -> ([FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140]) ([i915#180] / [i915#1814] / [i915#3002]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-apl1/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9913/shard-apl6/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl1/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl8/igt@runner@aborted.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl8/igt@runner@aborted.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl8/igt@runner@aborted.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/shard-apl3/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). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#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#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [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#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1699]: https://gitlab.freedesktop.org/drm/intel/issues/1699 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1895]: https://gitlab.freedesktop.org/drm/intel/issues/1895 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2369]: https://gitlab.freedesktop.org/drm/intel/issues/2369 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5674/index.html [-- Attachment #1.2: Type: text/html, Size: 37021 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] [PATCH i-g-t v2 1/2] tests/kms_plane: Don't test all format+modifier combinations 2021-03-29 19:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane: Don't test all format+modifier combinations Ville Syrjala ` (2 preceding siblings ...) 2021-03-29 22:02 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-04-07 15:27 ` Ville Syrjala 2021-04-09 7:51 ` Juha-Pekka Heikkila 2021-04-07 16:07 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] tests/kms_plane: Don't test all format+modifier combinations (rev2) Patchwork 2021-04-07 17:07 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 1 reply; 9+ messages in thread From: Ville Syrjala @ 2021-04-07 15:27 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> When running the non-extended tests let's use igt_reduce_format() and test each format "class" only once for each modifier except linear. This follows the earlier pattern of doing all the YCbCr limited vs. full range tests only for linear and skipping for other modifiers. This should maintian sufficient coverage to catch most watermark related bugs and whatnot. On icl: $ time kms_plane --r pixel-format-pipe-A-planes - real 0m9.390s + real 0m7.244s Full run of all pixel-format* tests on the same machine goes from ~58 seconds down to ~38 seconds. v2: Test the format the plane reported, not the reduced format Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- tests/kms_plane.c | 73 +++++++++++++++++++++++++++++++++-------------- 1 file changed, 51 insertions(+), 22 deletions(-) diff --git a/tests/kms_plane.c b/tests/kms_plane.c index c87983a4e539..f20f5bee918b 100644 --- a/tests/kms_plane.c +++ b/tests/kms_plane.c @@ -25,6 +25,7 @@ */ #include "igt.h" +#include "igt_vec.h" #include <errno.h> #include <stdbool.h> #include <stdio.h> @@ -816,16 +817,21 @@ enum crc_set { PACKED_CRC_SET, PLANAR_CRC_SET, MAX_CRC_SET }; +struct format_mod { + uint64_t modifier; + uint32_t format; +}; + static bool test_format_plane(data_t *data, enum pipe pipe, igt_output_t *output, igt_plane_t *plane, igt_fb_t *primary_fb) { struct igt_fb fb = {}; struct igt_fb *clear_fb = plane->type == DRM_PLANE_TYPE_PRIMARY ? primary_fb : NULL; drmModeModeInfo *mode; - uint32_t format, ref_format; - uint64_t modifier, ref_modifier; uint64_t width, height; igt_crc_t ref_crc[MAX_CRC_SET][ARRAY_SIZE(colors_extended)]; + struct igt_vec tested_formats; + struct format_mod ref = {}; igt_crc_t* crcset; bool result = true; @@ -835,12 +841,14 @@ static bool test_format_plane(data_t *data, enum pipe pipe, if (data->crop != 0 && plane->type == DRM_PLANE_TYPE_CURSOR) return true; + igt_vec_init(&tested_formats, sizeof(struct format_mod)); + mode = igt_output_get_mode(output); if (plane->type != DRM_PLANE_TYPE_CURSOR) { width = mode->hdisplay; height = mode->vdisplay; - ref_format = format = DRM_FORMAT_XRGB8888; - ref_modifier = modifier = DRM_FORMAT_MOD_NONE; + ref.format = DRM_FORMAT_XRGB8888; + ref.modifier = DRM_FORMAT_MOD_NONE; } else { if (!plane->drm_plane) { igt_debug("Only legacy cursor ioctl supported, skipping cursor plane\n"); @@ -848,8 +856,8 @@ static bool test_format_plane(data_t *data, enum pipe pipe, } do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_WIDTH, &width)); do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_HEIGHT, &height)); - ref_format = format = DRM_FORMAT_ARGB8888; - ref_modifier = modifier = DRM_FORMAT_MOD_NONE; + ref.format = DRM_FORMAT_ARGB8888; + ref.modifier = DRM_FORMAT_MOD_NONE; } igt_debug("Testing connector %s on %s plane %s.%u\n", @@ -859,15 +867,15 @@ static bool test_format_plane(data_t *data, enum pipe pipe, igt_pipe_crc_start(data->pipe_crc); igt_info("Testing format " IGT_FORMAT_FMT " / modifier 0x%" PRIx64 " on %s.%u\n", - IGT_FORMAT_ARGS(format), modifier, + IGT_FORMAT_ARGS(ref.format), ref.modifier, kmstest_pipe_name(pipe), plane->index); if (data->display.is_atomic) { struct igt_fb test_fb; int ret; - igt_create_fb(data->drm_fd, 64, 64, format, - LOCAL_DRM_FORMAT_MOD_NONE, &test_fb); + igt_create_fb(data->drm_fd, 64, 64, ref.format, + DRM_FORMAT_MOD_LINEAR, &test_fb); igt_plane_set_fb(plane, &test_fb); @@ -885,12 +893,12 @@ static bool test_format_plane(data_t *data, enum pipe pipe, igt_remove_fb(data->drm_fd, &test_fb); } - capture_format_crcs_packed(data, pipe, plane, format, modifier, + capture_format_crcs_packed(data, pipe, plane, ref.format, ref.modifier, width, height, IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE, ref_crc[PACKED_CRC_SET], &fb); - capture_format_crcs_planar(data, pipe, plane, format, modifier, + capture_format_crcs_planar(data, pipe, plane, ref.format, ref.modifier, width, height, IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE, ref_crc[PLANAR_CRC_SET], &fb); @@ -903,36 +911,55 @@ static bool test_format_plane(data_t *data, enum pipe pipe, igt_require(num_unique_crcs(ref_crc[PLANAR_CRC_SET], data->num_colors) > 1); for (int i = 0; i < plane->format_mod_count; i++) { - format = plane->formats[i]; - modifier = plane->modifiers[i]; + struct format_mod f = { + .format = plane->formats[i], + .modifier = plane->modifiers[i], + }; - if (format == ref_format && - modifier == ref_modifier) + if (f.format == ref.format && + f.modifier == ref.modifier) continue; - if (format == DRM_FORMAT_C8) { + /* test each format "class" only once in non-extended tests */ + if (!data->extended && f.modifier != DRM_FORMAT_MOD_LINEAR) { + struct format_mod rf = { + .format = igt_reduce_format(f.format), + .modifier = f.modifier, + }; + + if (igt_vec_index(&tested_formats, &rf) >= 0) { + igt_info("Skipping format " IGT_FORMAT_FMT " / modifier 0x%" PRIx64 " on %s.%u\n", + IGT_FORMAT_ARGS(f.format), f.modifier, + kmstest_pipe_name(pipe), plane->index); + continue; + } + + igt_vec_push(&tested_formats, &rf); + } + + if (f.format == DRM_FORMAT_C8) { if (!set_c8_legacy_lut(data, pipe, LUT_MASK)) continue; } else { - if (!igt_fb_supported_format(format)) + if (!igt_fb_supported_format(f.format)) continue; } - crcset = ref_crc[(igt_format_is_yuv_semiplanar(format) + crcset = ref_crc[(igt_format_is_yuv_semiplanar(f.format) ? PLANAR_CRC_SET : PACKED_CRC_SET)]; - if (igt_format_is_yuv(format)) + if (igt_format_is_yuv(f.format)) result &= test_format_plane_yuv(data, pipe, plane, - format, modifier, + f.format, f.modifier, width, height, crcset, &fb); else result &= test_format_plane_rgb(data, pipe, plane, - format, modifier, + f.format, f.modifier, width, height, crcset, &fb); - if (format == DRM_FORMAT_C8) + if (f.format == DRM_FORMAT_C8) set_legacy_lut(data, pipe, LUT_MASK); } @@ -941,6 +968,8 @@ static bool test_format_plane(data_t *data, enum pipe pipe, igt_plane_set_fb(plane, clear_fb); igt_remove_fb(data->drm_fd, &fb); + igt_vec_fini(&tested_formats); + return result; } -- 2.26.3 _______________________________________________ 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 v2 1/2] tests/kms_plane: Don't test all format+modifier combinations 2021-04-07 15:27 ` [igt-dev] [PATCH i-g-t v2 1/2] " Ville Syrjala @ 2021-04-09 7:51 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 9+ messages in thread From: Juha-Pekka Heikkila @ 2021-04-09 7:51 UTC (permalink / raw) To: Ville Syrjala, igt-dev I see this test still failing in upstream with that use of deleted framebuffer but this patch has nothing to do with that. I think things will get messy if for c8 format cannot set lut but I guess at that moment failure is inevitable anyway. Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> On 7.4.2021 18.27, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > When running the non-extended tests let's use igt_reduce_format() > and test each format "class" only once for each modifier except > linear. This follows the earlier pattern of doing all the YCbCr > limited vs. full range tests only for linear and skipping for > other modifiers. > > This should maintian sufficient coverage to catch most watermark > related bugs and whatnot. > > On icl: > $ time kms_plane --r pixel-format-pipe-A-planes > - real 0m9.390s > + real 0m7.244s > > Full run of all pixel-format* tests on the same machine > goes from ~58 seconds down to ~38 seconds. > > v2: Test the format the plane reported, not the reduced format > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > tests/kms_plane.c | 73 +++++++++++++++++++++++++++++++++-------------- > 1 file changed, 51 insertions(+), 22 deletions(-) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > index c87983a4e539..f20f5bee918b 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -25,6 +25,7 @@ > */ > > #include "igt.h" > +#include "igt_vec.h" > #include <errno.h> > #include <stdbool.h> > #include <stdio.h> > @@ -816,16 +817,21 @@ enum crc_set { PACKED_CRC_SET, > PLANAR_CRC_SET, > MAX_CRC_SET }; > > +struct format_mod { > + uint64_t modifier; > + uint32_t format; > +}; > + > static bool test_format_plane(data_t *data, enum pipe pipe, > igt_output_t *output, igt_plane_t *plane, igt_fb_t *primary_fb) > { > struct igt_fb fb = {}; > struct igt_fb *clear_fb = plane->type == DRM_PLANE_TYPE_PRIMARY ? primary_fb : NULL; > drmModeModeInfo *mode; > - uint32_t format, ref_format; > - uint64_t modifier, ref_modifier; > uint64_t width, height; > igt_crc_t ref_crc[MAX_CRC_SET][ARRAY_SIZE(colors_extended)]; > + struct igt_vec tested_formats; > + struct format_mod ref = {}; > igt_crc_t* crcset; > bool result = true; > > @@ -835,12 +841,14 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > if (data->crop != 0 && plane->type == DRM_PLANE_TYPE_CURSOR) > return true; > > + igt_vec_init(&tested_formats, sizeof(struct format_mod)); > + > mode = igt_output_get_mode(output); > if (plane->type != DRM_PLANE_TYPE_CURSOR) { > width = mode->hdisplay; > height = mode->vdisplay; > - ref_format = format = DRM_FORMAT_XRGB8888; > - ref_modifier = modifier = DRM_FORMAT_MOD_NONE; > + ref.format = DRM_FORMAT_XRGB8888; > + ref.modifier = DRM_FORMAT_MOD_NONE; > } else { > if (!plane->drm_plane) { > igt_debug("Only legacy cursor ioctl supported, skipping cursor plane\n"); > @@ -848,8 +856,8 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > } > do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_WIDTH, &width)); > do_or_die(drmGetCap(data->drm_fd, DRM_CAP_CURSOR_HEIGHT, &height)); > - ref_format = format = DRM_FORMAT_ARGB8888; > - ref_modifier = modifier = DRM_FORMAT_MOD_NONE; > + ref.format = DRM_FORMAT_ARGB8888; > + ref.modifier = DRM_FORMAT_MOD_NONE; > } > > igt_debug("Testing connector %s on %s plane %s.%u\n", > @@ -859,15 +867,15 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > igt_pipe_crc_start(data->pipe_crc); > > igt_info("Testing format " IGT_FORMAT_FMT " / modifier 0x%" PRIx64 " on %s.%u\n", > - IGT_FORMAT_ARGS(format), modifier, > + IGT_FORMAT_ARGS(ref.format), ref.modifier, > kmstest_pipe_name(pipe), plane->index); > > if (data->display.is_atomic) { > struct igt_fb test_fb; > int ret; > > - igt_create_fb(data->drm_fd, 64, 64, format, > - LOCAL_DRM_FORMAT_MOD_NONE, &test_fb); > + igt_create_fb(data->drm_fd, 64, 64, ref.format, > + DRM_FORMAT_MOD_LINEAR, &test_fb); > > igt_plane_set_fb(plane, &test_fb); > > @@ -885,12 +893,12 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > igt_remove_fb(data->drm_fd, &test_fb); > } > > - capture_format_crcs_packed(data, pipe, plane, format, modifier, > + capture_format_crcs_packed(data, pipe, plane, ref.format, ref.modifier, > width, height, IGT_COLOR_YCBCR_BT709, > IGT_COLOR_YCBCR_LIMITED_RANGE, > ref_crc[PACKED_CRC_SET], &fb); > > - capture_format_crcs_planar(data, pipe, plane, format, modifier, > + capture_format_crcs_planar(data, pipe, plane, ref.format, ref.modifier, > width, height, IGT_COLOR_YCBCR_BT709, > IGT_COLOR_YCBCR_LIMITED_RANGE, > ref_crc[PLANAR_CRC_SET], &fb); > @@ -903,36 +911,55 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > igt_require(num_unique_crcs(ref_crc[PLANAR_CRC_SET], data->num_colors) > 1); > > for (int i = 0; i < plane->format_mod_count; i++) { > - format = plane->formats[i]; > - modifier = plane->modifiers[i]; > + struct format_mod f = { > + .format = plane->formats[i], > + .modifier = plane->modifiers[i], > + }; > > - if (format == ref_format && > - modifier == ref_modifier) > + if (f.format == ref.format && > + f.modifier == ref.modifier) > continue; > > - if (format == DRM_FORMAT_C8) { > + /* test each format "class" only once in non-extended tests */ > + if (!data->extended && f.modifier != DRM_FORMAT_MOD_LINEAR) { > + struct format_mod rf = { > + .format = igt_reduce_format(f.format), > + .modifier = f.modifier, > + }; > + > + if (igt_vec_index(&tested_formats, &rf) >= 0) { > + igt_info("Skipping format " IGT_FORMAT_FMT " / modifier 0x%" PRIx64 " on %s.%u\n", > + IGT_FORMAT_ARGS(f.format), f.modifier, > + kmstest_pipe_name(pipe), plane->index); > + continue; > + } > + > + igt_vec_push(&tested_formats, &rf); > + } > + > + if (f.format == DRM_FORMAT_C8) { > if (!set_c8_legacy_lut(data, pipe, LUT_MASK)) > continue; > } else { > - if (!igt_fb_supported_format(format)) > + if (!igt_fb_supported_format(f.format)) > continue; > } > > - crcset = ref_crc[(igt_format_is_yuv_semiplanar(format) > + crcset = ref_crc[(igt_format_is_yuv_semiplanar(f.format) > ? PLANAR_CRC_SET : PACKED_CRC_SET)]; > > - if (igt_format_is_yuv(format)) > + if (igt_format_is_yuv(f.format)) > result &= test_format_plane_yuv(data, pipe, plane, > - format, modifier, > + f.format, f.modifier, > width, height, > crcset, &fb); > else > result &= test_format_plane_rgb(data, pipe, plane, > - format, modifier, > + f.format, f.modifier, > width, height, > crcset, &fb); > > - if (format == DRM_FORMAT_C8) > + if (f.format == DRM_FORMAT_C8) > set_legacy_lut(data, pipe, LUT_MASK); > } > > @@ -941,6 +968,8 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > igt_plane_set_fb(plane, clear_fb); > igt_remove_fb(data->drm_fd, &fb); > > + igt_vec_fini(&tested_formats); > + > return result; > } > > _______________________________________________ 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.BAT: success for series starting with [i-g-t,v2,1/2] tests/kms_plane: Don't test all format+modifier combinations (rev2) 2021-03-29 19:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane: Don't test all format+modifier combinations Ville Syrjala ` (3 preceding siblings ...) 2021-04-07 15:27 ` [igt-dev] [PATCH i-g-t v2 1/2] " Ville Syrjala @ 2021-04-07 16:07 ` Patchwork 2021-04-07 17:07 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-04-07 16:07 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 4056 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/2] tests/kms_plane: Don't test all format+modifier combinations (rev2) URL : https://patchwork.freedesktop.org/series/88554/ State : success == Summary == CI Bug Log - changes from IGT_6060 -> IGTPW_5708 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/index.html Known issues ------------ Here are the changes found in IGTPW_5708 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@hangcheck: - fi-snb-2600: [PASS][1] -> [INCOMPLETE][2] ([i915#2782]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/fi-snb-2600/igt@i915_selftest@live@hangcheck.html * igt@prime_vgem@basic-gtt: - fi-tgl-y: [PASS][3] -> [DMESG-WARN][4] ([i915#402]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/fi-tgl-y/igt@prime_vgem@basic-gtt.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/fi-tgl-y/igt@prime_vgem@basic-gtt.html #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - fi-tgl-y: [DMESG-FAIL][5] ([i915#541]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/fi-tgl-y/igt@i915_selftest@live@gt_heartbeat.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/fi-tgl-y/igt@i915_selftest@live@gt_heartbeat.html * igt@prime_self_import@basic-with_one_bo: - fi-tgl-y: [DMESG-WARN][7] ([i915#402]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/fi-tgl-y/igt@prime_self_import@basic-with_one_bo.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/fi-tgl-y/igt@prime_self_import@basic-with_one_bo.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1208]: https://gitlab.freedesktop.org/drm/intel/issues/1208 [i915#2055]: https://gitlab.freedesktop.org/drm/intel/issues/2055 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3276]: https://gitlab.freedesktop.org/drm/intel/issues/3276 [i915#3277]: https://gitlab.freedesktop.org/drm/intel/issues/3277 [i915#3278]: https://gitlab.freedesktop.org/drm/intel/issues/3278 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3283]: https://gitlab.freedesktop.org/drm/intel/issues/3283 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541 Participating hosts (43 -> 40) ------------------------------ Additional (2): fi-cml-drallion fi-rkl-11500t 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_6060 -> IGTPW_5708 CI-20190529: 20190529 CI_DRM_9931: 88d3a98ecbb1264e9046972e1103ac11b573bf83 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5708: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/index.html IGT_6060: 26b0a1ccd0ee0bff29e55d18c3fd8cbf83299049 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/index.html [-- Attachment #1.2: Type: text/html, Size: 3745 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: success for series starting with [i-g-t,v2,1/2] tests/kms_plane: Don't test all format+modifier combinations (rev2) 2021-03-29 19:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane: Don't test all format+modifier combinations Ville Syrjala ` (4 preceding siblings ...) 2021-04-07 16:07 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] tests/kms_plane: Don't test all format+modifier combinations (rev2) Patchwork @ 2021-04-07 17:07 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-04-07 17:07 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30321 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/2] tests/kms_plane: Don't test all format+modifier combinations (rev2) URL : https://patchwork.freedesktop.org/series/88554/ State : success == Summary == CI Bug Log - changes from IGT_6060_full -> IGTPW_5708_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/index.html Known issues ------------ Here are the changes found in IGTPW_5708_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - shard-apl: [PASS][1] -> [DMESG-WARN][2] ([i915#2283]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-apl8/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl7/igt@core_hotunplug@unbind-rebind.html - shard-glk: [PASS][3] -> [DMESG-WARN][4] ([i915#2283]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-glk8/igt@core_hotunplug@unbind-rebind.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk1/igt@core_hotunplug@unbind-rebind.html - shard-kbl: [PASS][5] -> [DMESG-WARN][6] ([i915#2283]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl7/igt@core_hotunplug@unbind-rebind.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl2/igt@core_hotunplug@unbind-rebind.html - shard-iclb: [PASS][7] -> [DMESG-WARN][8] ([i915#1602] / [i915#2283]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb4/igt@core_hotunplug@unbind-rebind.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb3/igt@core_hotunplug@unbind-rebind.html * igt@gem_create@create-massive: - shard-kbl: NOTRUN -> [DMESG-WARN][9] ([i915#3002]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@gem_create@create-massive.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglb: NOTRUN -> [SKIP][10] ([fdo#109314]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb8/igt@gem_ctx_param@set-priority-not-supported.html - shard-iclb: NOTRUN -> [SKIP][11] ([fdo#109314]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb7/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@clone: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099]) +5 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-snb6/igt@gem_ctx_persistence@clone.html * igt@gem_ctx_persistence@many-contexts: - shard-tglb: [PASS][13] -> [FAIL][14] ([i915#2410]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-tglb1/igt@gem_ctx_persistence@many-contexts.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb7/igt@gem_ctx_persistence@many-contexts.html * igt@gem_eio@in-flight-suspend: - shard-kbl: NOTRUN -> [DMESG-WARN][15] ([i915#180]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl2/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: NOTRUN -> [FAIL][16] ([i915#2842]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][17] ([fdo#109283]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb2/igt@gem_exec_params@no-blt.html - shard-iclb: NOTRUN -> [SKIP][18] ([fdo#109283]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb4/igt@gem_exec_params@no-blt.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][19] ([i915#2389]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-snb2/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_mmap_gtt@big-copy: - shard-glk: [PASS][20] -> [FAIL][21] ([i915#307]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-glk3/igt@gem_mmap_gtt@big-copy.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk7/igt@gem_mmap_gtt@big-copy.html * igt@gem_pread@exhaustion: - shard-apl: NOTRUN -> [WARN][22] ([i915#2658]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl2/igt@gem_pread@exhaustion.html * igt@gem_userptr_blits@dmabuf-sync: - shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#3323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@mmap-offset-invalidate-active@wb: - shard-snb: NOTRUN -> [SKIP][24] ([fdo#109271]) +288 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-snb2/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][25] ([i915#2724]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-snb7/igt@gem_userptr_blits@vma-merge.html - shard-apl: NOTRUN -> [FAIL][26] ([i915#3318]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl6/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@basic-rejected: - shard-iclb: NOTRUN -> [SKIP][27] ([fdo#112306]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb1/igt@gen9_exec_parse@basic-rejected.html - shard-tglb: NOTRUN -> [SKIP][28] ([fdo#112306]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb5/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-large: - shard-kbl: NOTRUN -> [FAIL][29] ([i915#3296]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl1/igt@gen9_exec_parse@bb-large.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][30] -> [SKIP][31] ([fdo#109271]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-apl8/igt@i915_pm_dc@dc9-dpms.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-kbl: NOTRUN -> [SKIP][32] ([fdo#109271]) +128 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_big_joiner@basic: - shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#2705]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl8/igt@kms_big_joiner@basic.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][34] ([fdo#109271] / [fdo#111827]) +12 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_chamelium@hdmi-hpd-after-suspend: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109284] / [fdo#111827]) +2 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb7/igt@kms_chamelium@hdmi-hpd-after-suspend.html * igt@kms_chamelium@vga-hpd-without-ddc: - shard-snb: NOTRUN -> [SKIP][36] ([fdo#109271] / [fdo#111827]) +16 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-snb5/igt@kms_chamelium@vga-hpd-without-ddc.html * igt@kms_color_chamelium@pipe-a-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [fdo#111827]) +26 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl2/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html * igt@kms_color_chamelium@pipe-c-ctm-green-to-red: - shard-glk: NOTRUN -> [SKIP][38] ([fdo#109271] / [fdo#111827]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk3/igt@kms_color_chamelium@pipe-c-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-d-ctm-max: - shard-tglb: NOTRUN -> [SKIP][39] ([fdo#109284] / [fdo#111827]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb2/igt@kms_color_chamelium@pipe-d-ctm-max.html * igt@kms_content_protection@content_type_change: - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#109300] / [fdo#111066]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb5/igt@kms_content_protection@content_type_change.html - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#111828]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb6/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@legacy: - shard-kbl: NOTRUN -> [TIMEOUT][42] ([i915#1319]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl3/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic: - shard-apl: NOTRUN -> [TIMEOUT][43] ([i915#1319]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl1/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#109279] / [i915#3359]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html - shard-glk: NOTRUN -> [SKIP][45] ([fdo#109271]) +12 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk4/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-dpms: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109278]) +6 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb1/igt@kms_cursor_crc@pipe-d-cursor-dpms.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-kbl: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#533]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl3/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-ytiled: - shard-glk: [PASS][48] -> [FAIL][49] ([i915#52] / [i915#54]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-glk5/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-ytiled.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-ytiled.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111825]) +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][51] -> [FAIL][52] ([i915#79]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-glk: [PASS][53] -> [FAIL][54] ([i915#49]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-glk6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109280]) +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: - shard-glk: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#533]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk8/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: - shard-kbl: [PASS][57] -> [DMESG-WARN][58] ([i915#180]) +2 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-kbl: [PASS][59] -> [DMESG-WARN][60] ([i915#180] / [i915#533]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb: - shard-apl: NOTRUN -> [FAIL][61] ([i915#265]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][62] ([fdo#108145] / [i915#265]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb: - shard-kbl: NOTRUN -> [FAIL][63] ([fdo#108145] / [i915#265]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html - shard-glk: NOTRUN -> [FAIL][64] ([fdo#108145] / [i915#265]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping: - shard-apl: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#2733]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl6/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: - shard-apl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#658]) +3 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5: - shard-kbl: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#658]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: - shard-iclb: NOTRUN -> [SKIP][68] ([i915#658]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html - shard-glk: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#658]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][70] -> [SKIP][71] ([fdo#109441]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb3/igt@kms_psr@psr2_cursor_render.html * igt@kms_sysfs_edid_timing: - shard-apl: NOTRUN -> [FAIL][72] ([IGT#2]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl2/igt@kms_sysfs_edid_timing.html * igt@kms_vblank@pipe-d-ts-continuation-idle: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271]) +227 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl1/igt@kms_vblank@pipe-d-ts-continuation-idle.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#533]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl7/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#2437]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl6/igt@kms_writeback@writeback-check-output.html * igt@nouveau_crc@pipe-d-source-rg: - shard-tglb: NOTRUN -> [SKIP][76] ([i915#2530]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb6/igt@nouveau_crc@pipe-d-source-rg.html - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109278] / [i915#2530]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb4/igt@nouveau_crc@pipe-d-source-rg.html * igt@sysfs_clients@recycle: - shard-kbl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2994]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl2/igt@sysfs_clients@recycle.html * igt@sysfs_clients@split-25: - shard-apl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2994]) +2 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl7/igt@sysfs_clients@split-25.html #### Possible fixes #### * igt@gem_create@create-clear: - shard-glk: [FAIL][80] ([i915#1888] / [i915#3160]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-glk8/igt@gem_create@create-clear.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk3/igt@gem_create@create-clear.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][82] ([i915#2369] / [i915#3063]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-tglb1/igt@gem_eio@unwedge-stress.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb6/igt@gem_eio@unwedge-stress.html - shard-iclb: [TIMEOUT][84] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb7/igt@gem_eio@unwedge-stress.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb6/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [FAIL][86] ([i915#2842]) -> [PASS][87] +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk8/igt@gem_exec_fair@basic-pace-solo@rcs0.html - shard-kbl: [FAIL][88] ([i915#2842]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [FAIL][90] ([i915#2842]) -> [PASS][91] +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-iclb: [FAIL][92] ([i915#307]) -> [PASS][93] +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb5/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][94] ([i915#454]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb4/igt@i915_pm_dc@dc6-psr.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb2/igt@i915_pm_dc@dc6-psr.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-apl: [FAIL][96] ([i915#2346]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled: - shard-glk: [FAIL][98] ([i915#52] / [i915#54]) -> [PASS][99] +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-glk4/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk1/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-xtiled.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-apl: [DMESG-WARN][100] ([i915#1982]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-kbl: [DMESG-WARN][102] ([i915#180]) -> [PASS][103] +5 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [SKIP][104] ([fdo#109441]) -> [PASS][105] +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html #### Warnings #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][106] ([i915#2852]) -> [FAIL][107] ([i915#2842]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb4/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: [WARN][108] ([i915#1804] / [i915#2684]) -> [WARN][109] ([i915#2684]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb3/igt@i915_pm_rc6_residency@rc6-fence.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb5/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-iclb: [WARN][110] ([i915#1804] / [i915#2684]) -> [WARN][111] ([i915#2681] / [i915#2684]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2: - shard-iclb: [SKIP][112] ([i915#2920]) -> [SKIP][113] ([i915#658]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4: - shard-iclb: [SKIP][114] ([i915#658]) -> [SKIP][115] ([i915#2920]) +3 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html * igt@runner@aborted: - shard-kbl: ([FAIL][116], [FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126]) ([fdo#109271] / [i915#1436] / [i915#180] / [i915#1814] / [i915#2292] / [i915#2505]) -> ([FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2283] / [i915#2505] / [i915#3002]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl2/igt@runner@aborted.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl7/igt@runner@aborted.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl7/igt@runner@aborted.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl7/igt@runner@aborted.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl6/igt@runner@aborted.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl7/igt@runner@aborted.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl6/igt@runner@aborted.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl7/igt@runner@aborted.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl6/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl4/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-kbl7/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl7/igt@runner@aborted.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl7/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl2/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl2/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-kbl6/igt@runner@aborted.html - shard-iclb: ([FAIL][138], [FAIL][139]) ([i915#3002]) -> ([FAIL][140], [FAIL][141], [FAIL][142]) ([i915#2283] / [i915#3002]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb7/igt@runner@aborted.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-iclb7/igt@runner@aborted.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb5/igt@runner@aborted.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb4/igt@runner@aborted.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-iclb3/igt@runner@aborted.html - shard-apl: [FAIL][143] ([i915#3002]) -> ([FAIL][144], [FAIL][145]) ([i915#2283] / [i915#3002]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-apl1/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl7/igt@runner@aborted.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-apl2/igt@runner@aborted.html - shard-glk: ([FAIL][146], [FAIL][147]) ([i915#3002] / [k.org#202321]) -> ([FAIL][148], [FAIL][149], [FAIL][150]) ([i915#2283] / [i915#3002] / [k.org#202321]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-glk8/igt@runner@aborted.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6060/shard-glk1/igt@runner@aborted.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk7/igt@runner@aborted.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk6/igt@runner@aborted.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/shard-glk1/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). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [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#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066 [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#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2283]: https://gitlab.freedesk == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5708/index.html [-- Attachment #1.2: Type: text/html, Size: 36688 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
end of thread, other threads:[~2021-04-09 7:51 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-03-29 19:00 [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane: Don't test all format+modifier combinations Ville Syrjala 2021-03-29 19:00 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Remove pixel-format-pipe-A* from the pre-merge blacklist Ville Syrjala 2021-03-30 4:08 ` Petri Latvala 2021-03-29 19:34 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_plane: Don't test all format+modifier combinations Patchwork 2021-03-29 22:02 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2021-04-07 15:27 ` [igt-dev] [PATCH i-g-t v2 1/2] " Ville Syrjala 2021-04-09 7:51 ` Juha-Pekka Heikkila 2021-04-07 16:07 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] tests/kms_plane: Don't test all format+modifier combinations (rev2) Patchwork 2021-04-07 17:07 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox