* [igt-dev] [PATCH i-g-t] tests/kms_plane_lowres: Fix CRC mismatch
@ 2020-01-24 14:06 Mika Kahola
2020-01-24 14:55 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2020-01-26 18:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
0 siblings, 2 replies; 3+ messages in thread
From: Mika Kahola @ 2020-01-24 14:06 UTC (permalink / raw)
To: igt-dev
Mixing SDR and HDR planes yields to CRC mismatch. The patch computes the
reference image and CRC with the main plane matching the SDR/HDR plane type.
References: https://gitlab.freedesktop.org/drm/intel/issues/899
Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
tests/kms_plane_lowres.c | 182 +++++++++++++++++++++++++--------------
1 file changed, 116 insertions(+), 66 deletions(-)
diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c
index 4c3f5636..67723097 100644
--- a/tests/kms_plane_lowres.c
+++ b/tests/kms_plane_lowres.c
@@ -32,11 +32,15 @@
IGT_TEST_DESCRIPTION("Test atomic mode setting with a plane by switching between high and low resolutions");
+#define SDR_PLANE_BASE 3
#define SIZE 64
typedef struct {
int drm_fd;
igt_display_t display;
+ igt_output_t *output;
+ enum pipe pipe;
+ igt_plane_t *plane;
struct igt_fb fb_primary;
struct igt_fb fb_plane[2];
struct {
@@ -77,21 +81,46 @@ get_lowres_mode(int drmfd, igt_output_t *output,
return *mode;
}
-static bool setup_plane(data_t *data, igt_plane_t *plane)
+static igt_plane_t *first_sdr_plane(data_t *data)
+{
+ return igt_output_get_plane(data->output, SDR_PLANE_BASE);
+}
+
+static bool is_sdr_plane(const igt_plane_t *plane)
+{
+ return plane->index >= SDR_PLANE_BASE;
+}
+
+/*
+ * Mixing SDR and HDR planes results in a CRC mismatch, so use the first
+ * SDR/HDR plane as the main plane matching the SDR/HDR type of the sprite
+ * plane under test.
+ */
+static igt_plane_t *compatible_main_plane(data_t *data)
+{
+ if (is_sdr_plane(data->plane))
+ return first_sdr_plane(data);
+
+ return igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
+}
+
+static bool setup_plane(data_t *data)
{
struct igt_fb *fb;
- if (plane->type == DRM_PLANE_TYPE_PRIMARY)
+ if (data->plane->type == DRM_PLANE_TYPE_PRIMARY ||
+ data->plane == first_sdr_plane(data) ||
+ data->plane->type == DRM_PLANE_TYPE_CURSOR)
return false;
fb = &data->fb_plane[0];
- if (!igt_plane_has_format_mod(plane, fb->drm_format, fb->modifier))
+ if (!igt_plane_has_format_mod(data->plane, fb->drm_format, fb->modifier))
fb = &data->fb_plane[1];
- if (!igt_plane_has_format_mod(plane, fb->drm_format, fb->modifier))
+ if (!igt_plane_has_format_mod(data->plane, fb->drm_format, fb->modifier))
return false;
- igt_plane_set_position(plane, data->x, data->y);
- igt_plane_set_fb(plane, fb);
+ igt_plane_set_position(data->plane, data->x, data->y);
+ igt_plane_set_fb(data->plane, fb);
return true;
}
@@ -125,25 +154,20 @@ static void create_ref_fb(data_t *data, uint64_t modifier,
}
static unsigned
-test_planes_on_pipe_with_output(data_t *data, enum pipe pipe,
- igt_output_t *output, uint64_t modifier)
+test_plane_on_pipe(data_t *data, uint64_t modifier)
{
- igt_pipe_t *pipe_obj = &data->display.pipes[pipe];
const drmModeModeInfo *mode;
drmModeModeInfo mode_lowres;
igt_pipe_crc_t *pipe_crc;
unsigned tested = 0;
- igt_plane_t *plane;
igt_plane_t *primary;
+ igt_crc_t crc_lowres, crc_hires1, crc_hires2;
- primary = igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_PRIMARY);
-
- igt_info("Testing connector %s using pipe %s\n",
- igt_output_name(output), kmstest_pipe_name(pipe));
+ primary = compatible_main_plane(data);
- igt_output_set_pipe(output, pipe);
- mode = igt_output_get_mode(output);
- mode_lowres = get_lowres_mode(data->drm_fd, output, mode);
+ igt_output_set_pipe(data->output, data->pipe);
+ mode = igt_output_get_mode(data->output);
+ mode_lowres = get_lowres_mode(data->drm_fd, data->output, mode);
igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
DRM_FORMAT_XRGB8888, modifier, 0.0, 0.0, 1.0,
@@ -164,15 +188,15 @@ test_planes_on_pipe_with_output(data_t *data, enum pipe pipe,
create_ref_fb(data, modifier, mode, &data->ref_hires.fb);
create_ref_fb(data, modifier, &mode_lowres, &data->ref_lowres.fb);
- pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe,
+ pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe,
INTEL_PIPE_CRC_SOURCE_AUTO);
- igt_output_override_mode(output, &mode_lowres);
+ igt_output_override_mode(data->output, &mode_lowres);
igt_plane_set_fb(primary, &data->ref_lowres.fb);
igt_display_commit2(&data->display, COMMIT_ATOMIC);
igt_pipe_crc_collect_crc(pipe_crc, &data->ref_lowres.crc);
- igt_output_override_mode(output, NULL);
+ igt_output_override_mode(data->output, NULL);
igt_plane_set_fb(primary, &data->ref_hires.fb);
igt_display_commit2(&data->display, COMMIT_ATOMIC);
igt_pipe_crc_collect_crc(pipe_crc, &data->ref_hires.crc);
@@ -181,40 +205,36 @@ test_planes_on_pipe_with_output(data_t *data, enum pipe pipe,
igt_display_commit2(&data->display, COMMIT_ATOMIC);
/* yellow sprite plane in lower left corner */
- for_each_plane_on_pipe(&data->display, pipe, plane) {
- igt_crc_t crc_lowres, crc_hires1, crc_hires2;
-
- if (!setup_plane(data, plane))
- continue;
+ if (!setup_plane(data))
+ return 0;
- igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
- igt_pipe_crc_collect_crc(pipe_crc, &crc_hires1);
+ igt_pipe_crc_collect_crc(pipe_crc, &crc_hires1);
- /* switch to lower resolution */
- igt_output_override_mode(output, &mode_lowres);
- igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ /* switch to lower resolution */
+ igt_output_override_mode(data->output, &mode_lowres);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
- igt_pipe_crc_collect_crc(pipe_crc, &crc_lowres);
+ igt_pipe_crc_collect_crc(pipe_crc, &crc_lowres);
- /* switch back to higher resolution */
- igt_output_override_mode(output, NULL);
- igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ /* switch back to higher resolution */
+ igt_output_override_mode(data->output, NULL);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
- igt_pipe_crc_collect_crc(pipe_crc, &crc_hires2);
+ igt_pipe_crc_collect_crc(pipe_crc, &crc_hires2);
- igt_assert_crc_equal(&data->ref_hires.crc, &crc_hires1);
- igt_assert_crc_equal(&data->ref_hires.crc, &crc_hires2);
- igt_assert_crc_equal(&data->ref_lowres.crc, &crc_lowres);
+ igt_assert_crc_equal(&data->ref_hires.crc, &crc_hires1);
+ igt_assert_crc_equal(&data->ref_hires.crc, &crc_hires2);
+ igt_assert_crc_equal(&data->ref_lowres.crc, &crc_lowres);
- igt_plane_set_fb(plane, NULL);
- tested++;
- }
+ igt_plane_set_fb(data->plane, NULL);
+ tested++;
igt_pipe_crc_free(pipe_crc);
igt_plane_set_fb(primary, NULL);
- igt_output_set_pipe(output, PIPE_NONE);
+ igt_output_set_pipe(data->output, PIPE_NONE);
igt_remove_fb(data->drm_fd, &data->fb_plane[1]);
igt_remove_fb(data->drm_fd, &data->fb_plane[0]);
@@ -225,22 +245,22 @@ test_planes_on_pipe_with_output(data_t *data, enum pipe pipe,
return tested;
}
-static void
-test_planes_on_pipe(data_t *data, enum pipe pipe, uint64_t modifier)
+static int test_plane_on_pipe_with_output(data_t *data, uint64_t modifier)
{
- igt_output_t *output;
- unsigned tested = 0;
+ igt_display_t *display = &data->display;
+ int tested = 0;
+
+ data->output = igt_get_single_output_for_pipe(display, data->pipe);
+ igt_require(data->output);
- igt_skip_on(pipe >= data->display.n_pipes);
- igt_display_require_output_on_pipe(&data->display, pipe);
- igt_skip_on(!igt_display_has_format_mod(&data->display,
- DRM_FORMAT_XRGB8888, modifier));
+ igt_output_set_pipe(data->output, data->pipe);
- for_each_valid_output_on_pipe(&data->display, pipe, output)
- tested += test_planes_on_pipe_with_output(data, pipe, output,
- modifier);
+ tested += test_plane_on_pipe(data, modifier);
- igt_assert(tested > 0);
+ igt_output_set_pipe(data->output, PIPE_NONE);
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ return tested;
}
igt_main
@@ -259,21 +279,51 @@ igt_main
}
for_each_pipe_static(pipe) {
- igt_subtest_f("pipe-%s-tiling-none", kmstest_pipe_name(pipe))
- test_planes_on_pipe(&data, pipe,
- LOCAL_DRM_FORMAT_MOD_NONE);
+ const char *pipe_name = kmstest_pipe_name(pipe);
+ data.pipe = pipe;
+ igt_subtest_f("pipe-%s-tiling-none", pipe_name) {
+ int tested = 0;
+
+ igt_display_require_output_on_pipe(&data.display, data.pipe);
+
+ for_each_plane_on_pipe(&data.display, data.pipe, data.plane) {
+ tested += test_plane_on_pipe_with_output(&data, LOCAL_DRM_FORMAT_MOD_NONE);
+ }
+ igt_assert(tested > 0);
+ }
- igt_subtest_f("pipe-%s-tiling-x", kmstest_pipe_name(pipe))
- test_planes_on_pipe(&data, pipe,
- LOCAL_I915_FORMAT_MOD_X_TILED);
+ igt_subtest_f("pipe-%s-tiling-x", pipe_name) {
+ int tested = 0;
- igt_subtest_f("pipe-%s-tiling-y", kmstest_pipe_name(pipe))
- test_planes_on_pipe(&data, pipe,
- LOCAL_I915_FORMAT_MOD_Y_TILED);
+ igt_display_require_output_on_pipe(&data.display, data.pipe);
- igt_subtest_f("pipe-%s-tiling-yf", kmstest_pipe_name(pipe))
- test_planes_on_pipe(&data, pipe,
- LOCAL_I915_FORMAT_MOD_Yf_TILED);
+ for_each_plane_on_pipe(&data.display, data.pipe, data.plane) {
+ tested += test_plane_on_pipe_with_output(&data, LOCAL_I915_FORMAT_MOD_X_TILED);
+ }
+ igt_assert(tested > 0);
+ }
+
+ igt_subtest_f("pipe-%s-tiling-y", pipe_name) {
+ int tested = 0;
+
+ igt_display_require_output_on_pipe(&data.display, data.pipe);
+
+ for_each_plane_on_pipe(&data.display, data.pipe, data.plane) {
+ tested += test_plane_on_pipe_with_output(&data, LOCAL_I915_FORMAT_MOD_Y_TILED);
+ }
+ igt_assert(tested > 0);
+ }
+
+ igt_subtest_f("pipe-%s-tiling-yf", pipe_name) {
+ int tested = 0;
+
+ igt_display_require_output_on_pipe(&data.display, data.pipe);
+
+ for_each_plane_on_pipe(&data.display, data.pipe, data.plane) {
+ tested += test_plane_on_pipe_with_output(&data, LOCAL_I915_FORMAT_MOD_Yf_TILED);
+ }
+ igt_assert(tested > 0);
+ }
}
igt_fixture {
--
2.17.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_lowres: Fix CRC mismatch
2020-01-24 14:06 [igt-dev] [PATCH i-g-t] tests/kms_plane_lowres: Fix CRC mismatch Mika Kahola
@ 2020-01-24 14:55 ` Patchwork
2020-01-26 18:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2020-01-24 14:55 UTC (permalink / raw)
To: Mika Kahola; +Cc: igt-dev
== Series Details ==
Series: tests/kms_plane_lowres: Fix CRC mismatch
URL : https://patchwork.freedesktop.org/series/72536/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7809 -> IGTPW_3990
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/index.html
Known issues
------------
Here are the changes found in IGTPW_3990 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@prime_self_import@basic-with_two_bos:
- fi-tgl-y: [PASS][1] -> [DMESG-WARN][2] ([CI#94] / [i915#402])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-tgl-y/igt@prime_self_import@basic-with_two_bos.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-tgl-y/igt@prime_self_import@basic-with_two_bos.html
#### Possible fixes ####
* igt@gem_exec_parallel@contexts:
- fi-byt-j1900: [TIMEOUT][3] ([fdo#112271]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-byt-j1900/igt@gem_exec_parallel@contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-byt-j1900/igt@gem_exec_parallel@contexts.html
* igt@i915_getparams_basic@basic-eu-total:
- fi-tgl-y: [DMESG-WARN][5] ([CI#94] / [i915#402]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-tgl-y/igt@i915_getparams_basic@basic-eu-total.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-tgl-y/igt@i915_getparams_basic@basic-eu-total.html
* igt@i915_module_load@reload-with-fault-injection:
- fi-kbl-7500u: [INCOMPLETE][7] ([i915#879]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-kbl-7500u/igt@i915_module_load@reload-with-fault-injection.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-kbl-7500u/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@module-reload:
- fi-kbl-x1275: [DMESG-WARN][9] ([i915#889]) -> [PASS][10] +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live_gem_contexts:
- fi-skl-lmem: [INCOMPLETE][11] ([i915#424]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-skl-lmem/igt@i915_selftest@live_gem_contexts.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-skl-lmem/igt@i915_selftest@live_gem_contexts.html
* igt@i915_selftest@live_sanitycheck:
- fi-kbl-x1275: [INCOMPLETE][13] -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-kbl-x1275/igt@i915_selftest@live_sanitycheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-kbl-x1275/igt@i915_selftest@live_sanitycheck.html
* igt@kms_chamelium@hdmi-crc-fast:
- fi-skl-6700k2: [FAIL][15] ([i915#410]) -> [PASS][16] +3 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-skl-6700k2/igt@kms_chamelium@hdmi-crc-fast.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-skl-6700k2/igt@kms_chamelium@hdmi-crc-fast.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [FAIL][17] ([fdo#111096] / [i915#323]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
#### Warnings ####
* igt@i915_selftest@live_blt:
- fi-hsw-4770: [DMESG-FAIL][19] ([i915#553] / [i915#725]) -> [DMESG-FAIL][20] ([i915#725])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-hsw-4770/igt@i915_selftest@live_blt.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-hsw-4770/igt@i915_selftest@live_blt.html
* igt@kms_chamelium@dp-hpd-fast:
- fi-skl-6700k2: [FAIL][21] ([i915#410]) -> [SKIP][22] ([fdo#109271]) +4 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/fi-skl-6700k2/igt@kms_chamelium@dp-hpd-fast.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/fi-skl-6700k2/igt@kms_chamelium@dp-hpd-fast.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
[fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
[i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#410]: https://gitlab.freedesktop.org/drm/intel/issues/410
[i915#424]: https://gitlab.freedesktop.org/drm/intel/issues/424
[i915#470]: https://gitlab.freedesktop.org/drm/intel/issues/470
[i915#472]: https://gitlab.freedesktop.org/drm/intel/issues/472
[i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
[i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
[i915#879]: https://gitlab.freedesktop.org/drm/intel/issues/879
[i915#889]: https://gitlab.freedesktop.org/drm/intel/issues/889
Participating hosts (51 -> 45)
------------------------------
Missing (6): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5382 -> IGTPW_3990
CI-20190529: 20190529
CI_DRM_7809: 861f608ce6e3c1a1ad320a5d18055601cff36e45 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3990: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/index.html
IGT_5382: 8dbe5ce61baa2d563d4dd7c56a018bb1e1077467 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 3+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane_lowres: Fix CRC mismatch
2020-01-24 14:06 [igt-dev] [PATCH i-g-t] tests/kms_plane_lowres: Fix CRC mismatch Mika Kahola
2020-01-24 14:55 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2020-01-26 18:52 ` Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2020-01-26 18:52 UTC (permalink / raw)
To: Mika Kahola; +Cc: igt-dev
== Series Details ==
Series: tests/kms_plane_lowres: Fix CRC mismatch
URL : https://patchwork.freedesktop.org/series/72536/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_7809_full -> IGTPW_3990_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_3990_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_3990_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_3990/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3990_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_lowres@pipe-b-tiling-x:
- shard-apl: [PASS][1] -> [FAIL][2] +7 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-apl7/igt@kms_plane_lowres@pipe-b-tiling-x.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-apl7/igt@kms_plane_lowres@pipe-b-tiling-x.html
#### Warnings ####
* igt@kms_plane_lowres@pipe-a-tiling-yf:
- shard-snb: [SKIP][3] ([fdo#109271]) -> [FAIL][4] +3 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-snb6/igt@kms_plane_lowres@pipe-a-tiling-yf.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-snb4/igt@kms_plane_lowres@pipe-a-tiling-yf.html
* igt@kms_plane_lowres@pipe-b-tiling-yf:
- shard-hsw: [SKIP][5] ([fdo#109271]) -> [FAIL][6] +5 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-hsw6/igt@kms_plane_lowres@pipe-b-tiling-yf.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-hsw7/igt@kms_plane_lowres@pipe-b-tiling-yf.html
* igt@kms_plane_lowres@pipe-d-tiling-yf:
- shard-tglb: [SKIP][7] ([fdo#112054]) -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-yf.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-tglb8/igt@kms_plane_lowres@pipe-d-tiling-yf.html
Known issues
------------
Here are the changes found in IGTPW_3990_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_persistence@vcs1-mixed-process:
- shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#109276] / [fdo#112080]) +3 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb2/igt@gem_ctx_persistence@vcs1-mixed-process.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb6/igt@gem_ctx_persistence@vcs1-mixed-process.html
* igt@gem_exec_schedule@preempt-bsd:
- shard-iclb: [PASS][11] -> [SKIP][12] ([fdo#112146]) +3 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb6/igt@gem_exec_schedule@preempt-bsd.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb4/igt@gem_exec_schedule@preempt-bsd.html
* igt@gem_exec_schedule@preempt-contexts-bsd2:
- shard-iclb: [PASS][13] -> [SKIP][14] ([fdo#109276]) +22 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb4/igt@gem_exec_schedule@preempt-contexts-bsd2.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb3/igt@gem_exec_schedule@preempt-contexts-bsd2.html
* igt@gem_persistent_relocs@forked-faulting-reloc-thrashing:
- shard-snb: [PASS][15] -> [DMESG-WARN][16] ([i915#478]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-snb6/igt@gem_persistent_relocs@forked-faulting-reloc-thrashing.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-snb4/igt@gem_persistent_relocs@forked-faulting-reloc-thrashing.html
* igt@gem_userptr_blits@sync-unmap:
- shard-snb: [PASS][17] -> [DMESG-WARN][18] ([fdo#111870] / [i915#478]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-snb5/igt@gem_userptr_blits@sync-unmap.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-snb2/igt@gem_userptr_blits@sync-unmap.html
* igt@i915_selftest@mock_requests:
- shard-iclb: [PASS][19] -> [INCOMPLETE][20] ([i915#140])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb4/igt@i915_selftest@mock_requests.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb2/igt@i915_selftest@mock_requests.html
* igt@kms_color@pipe-b-ctm-max:
- shard-apl: [PASS][21] -> [FAIL][22] ([i915#168])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-apl4/igt@kms_color@pipe-b-ctm-max.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-apl4/igt@kms_color@pipe-b-ctm-max.html
- shard-kbl: [PASS][23] -> [FAIL][24] ([i915#168])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-kbl6/igt@kms_color@pipe-b-ctm-max.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-kbl1/igt@kms_color@pipe-b-ctm-max.html
* igt@kms_cursor_crc@pipe-b-cursor-size-change:
- shard-kbl: [PASS][25] -> [FAIL][26] ([i915#54])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
- shard-apl: [PASS][27] -> [FAIL][28] ([i915#54])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-size-change.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-apl: [PASS][29] -> [FAIL][30] ([i915#46])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-apl1/igt@kms_flip@flip-vs-expired-vblank.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-apl7/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-suspend:
- shard-iclb: [PASS][31] -> [INCOMPLETE][32] ([i915#140] / [i915#221])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb8/igt@kms_flip@flip-vs-suspend.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb4/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-glk: [PASS][33] -> [FAIL][34] ([i915#49])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
- shard-apl: [PASS][35] -> [FAIL][36] ([i915#49])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-apl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-apl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
- shard-kbl: [PASS][37] -> [FAIL][38] ([i915#49])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-tglb: [PASS][39] -> [FAIL][40] ([i915#49]) +6 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_plane_lowres@pipe-b-tiling-none:
- shard-snb: [PASS][41] -> [INCOMPLETE][42] ([i915#82]) +2 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-snb5/igt@kms_plane_lowres@pipe-b-tiling-none.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-snb1/igt@kms_plane_lowres@pipe-b-tiling-none.html
* igt@kms_plane_lowres@pipe-b-tiling-yf:
- shard-kbl: [PASS][43] -> [INCOMPLETE][44] ([fdo#103665] / [i915#635])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-kbl3/igt@kms_plane_lowres@pipe-b-tiling-yf.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-kbl1/igt@kms_plane_lowres@pipe-b-tiling-yf.html
* igt@kms_plane_lowres@pipe-c-tiling-none:
- shard-hsw: [PASS][45] -> [INCOMPLETE][46] ([i915#61]) +6 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-hsw6/igt@kms_plane_lowres@pipe-c-tiling-none.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-none.html
* igt@kms_plane_lowres@pipe-c-tiling-y:
- shard-apl: [PASS][47] -> [INCOMPLETE][48] ([fdo#103927]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-apl4/igt@kms_plane_lowres@pipe-c-tiling-y.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-apl6/igt@kms_plane_lowres@pipe-c-tiling-y.html
* igt@kms_plane_lowres@pipe-c-tiling-yf:
- shard-kbl: [PASS][49] -> [INCOMPLETE][50] ([fdo#103665]) +12 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-kbl2/igt@kms_plane_lowres@pipe-c-tiling-yf.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-kbl4/igt@kms_plane_lowres@pipe-c-tiling-yf.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: [PASS][51] -> [SKIP][52] ([fdo#109441]) +2 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb4/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-kbl: [PASS][53] -> [DMESG-WARN][54] ([i915#180]) +6 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-kbl3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
- shard-apl: [PASS][55] -> [DMESG-WARN][56] ([i915#180]) +4 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-apl3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@perf_pmu@busy-vcs1:
- shard-iclb: [PASS][57] -> [SKIP][58] ([fdo#112080]) +4 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb2/igt@perf_pmu@busy-vcs1.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb8/igt@perf_pmu@busy-vcs1.html
* igt@prime_mmap_coherency@ioctl-errors:
- shard-hsw: [PASS][59] -> [FAIL][60] ([i915#831])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-hsw2/igt@prime_mmap_coherency@ioctl-errors.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-hsw6/igt@prime_mmap_coherency@ioctl-errors.html
#### Possible fixes ####
* igt@gem_ctx_persistence@vcs1-queued:
- shard-iclb: [SKIP][61] ([fdo#109276] / [fdo#112080]) -> [PASS][62] +4 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb8/igt@gem_ctx_persistence@vcs1-queued.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb1/igt@gem_ctx_persistence@vcs1-queued.html
* igt@gem_ctx_persistence@vecs0-mixed-process:
- shard-glk: [FAIL][63] ([i915#679]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-glk4/igt@gem_ctx_persistence@vecs0-mixed-process.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-glk3/igt@gem_ctx_persistence@vecs0-mixed-process.html
* igt@gem_exec_balancer@smoke:
- shard-iclb: [SKIP][65] ([fdo#110854]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb7/igt@gem_exec_balancer@smoke.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb2/igt@gem_exec_balancer@smoke.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-glk: [INCOMPLETE][67] ([i915#58] / [k.org#198133]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-glk9/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-glk8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_schedule@pi-ringfull-bsd:
- shard-iclb: [SKIP][69] ([fdo#112146]) -> [PASS][70] +1 similar issue
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb1/igt@gem_exec_schedule@pi-ringfull-bsd.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb5/igt@gem_exec_schedule@pi-ringfull-bsd.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-apl: [FAIL][71] ([i915#644]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-apl2/igt@gem_ppgtt@flink-and-close-vma-leak.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-apl1/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@gem_userptr_blits@sync-unmap-cycles:
- shard-snb: [DMESG-WARN][73] ([fdo#111870] / [i915#478]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html
* igt@gem_wait@busy-vcs1:
- shard-iclb: [SKIP][75] ([fdo#112080]) -> [PASS][76] +5 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb8/igt@gem_wait@busy-vcs1.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb4/igt@gem_wait@busy-vcs1.html
* igt@gen7_exec_parse@basic-offset:
- shard-hsw: [FAIL][77] ([i915#694]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-hsw1/igt@gen7_exec_parse@basic-offset.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-hsw2/igt@gen7_exec_parse@basic-offset.html
* igt@i915_pm_rps@waitboost:
- shard-iclb: [FAIL][79] ([i915#413]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb3/igt@i915_pm_rps@waitboost.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb7/igt@i915_pm_rps@waitboost.html
* igt@i915_selftest@live_blt:
- shard-hsw: [DMESG-FAIL][81] ([i915#563]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-hsw2/igt@i915_selftest@live_blt.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-hsw7/igt@i915_selftest@live_blt.html
* igt@i915_selftest@mock_requests:
- shard-tglb: [INCOMPLETE][83] ([i915#472]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-tglb7/igt@i915_selftest@mock_requests.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-tglb7/igt@i915_selftest@mock_requests.html
* igt@kms_cursor_crc@pipe-a-cursor-suspend:
- shard-kbl: [DMESG-WARN][85] ([i915#180]) -> [PASS][86] +6 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-glk: [FAIL][87] ([i915#79]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-snb: [DMESG-WARN][89] ([i915#478]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-snb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-snb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
- shard-tglb: [FAIL][91] ([i915#49]) -> [PASS][92] +5 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_plane_lowres@pipe-a-tiling-none:
- shard-tglb: [FAIL][93] ([i915#899]) -> [PASS][94] +9 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-tglb4/igt@kms_plane_lowres@pipe-a-tiling-none.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-tglb3/igt@kms_plane_lowres@pipe-a-tiling-none.html
* igt@kms_plane_lowres@pipe-b-tiling-x:
- shard-glk: [FAIL][95] ([i915#899]) -> [PASS][96] +11 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-glk3/igt@kms_plane_lowres@pipe-b-tiling-x.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-glk6/igt@kms_plane_lowres@pipe-b-tiling-x.html
* igt@kms_plane_lowres@pipe-c-tiling-none:
- shard-iclb: [FAIL][97] ([i915#899]) -> [PASS][98] +11 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb3/igt@kms_plane_lowres@pipe-c-tiling-none.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb5/igt@kms_plane_lowres@pipe-c-tiling-none.html
* igt@kms_psr2_su@page_flip:
- shard-iclb: [SKIP][99] ([fdo#109642] / [fdo#111068]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb3/igt@kms_psr2_su@page_flip.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb2/igt@kms_psr2_su@page_flip.html
* igt@kms_psr@psr2_sprite_render:
- shard-iclb: [SKIP][101] ([fdo#109441]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb3/igt@kms_psr@psr2_sprite_render.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb2/igt@kms_psr@psr2_sprite_render.html
* igt@perf@oa-exponents:
- shard-glk: [FAIL][103] ([i915#84]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-glk8/igt@perf@oa-exponents.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-glk4/igt@perf@oa-exponents.html
* igt@prime_busy@hang-bsd2:
- shard-iclb: [SKIP][105] ([fdo#109276]) -> [PASS][106] +20 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb7/igt@prime_busy@hang-bsd2.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb4/igt@prime_busy@hang-bsd2.html
#### Warnings ####
* igt@gem_ctx_isolation@vcs1-nonpriv-switch:
- shard-iclb: [FAIL][107] ([IGT#28]) -> [SKIP][108] ([fdo#109276] / [fdo#112080])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html
* igt@gem_tiled_blits@normal:
- shard-hsw: [FAIL][109] ([i915#694]) -> [FAIL][110] ([i915#818])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-hsw7/igt@gem_tiled_blits@normal.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-hsw7/igt@gem_tiled_blits@normal.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
- shard-snb: [DMESG-WARN][111] ([fdo#110789] / [fdo#111870] / [i915#478]) -> [DMESG-WARN][112] ([fdo#111870] / [i915#478])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
* igt@kms_dp_dsc@basic-dsc-enable-edp:
- shard-iclb: [DMESG-WARN][113] ([fdo#107724]) -> [SKIP][114] ([fdo#109349])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-edp.html
* igt@kms_plane_lowres@pipe-b-tiling-yf:
- shard-tglb: [SKIP][115] ([fdo#111615]) -> [FAIL][116] ([fdo#111615]) +2 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-tglb5/igt@kms_plane_lowres@pipe-b-tiling-yf.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-tglb5/igt@kms_plane_lowres@pipe-b-tiling-yf.html
* igt@kms_plane_lowres@pipe-d-tiling-x:
- shard-iclb: [SKIP][117] ([fdo#109278] / [fdo#112010]) -> [SKIP][118] ([fdo#109278]) +3 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7809/shard-iclb6/igt@kms_plane_lowres@pipe-d-tiling-x.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/shard-iclb1/igt@kms_plane_lowres@pipe-d-tiling-x.html
[IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
[fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
[fdo#112010]: https://bugs.freedesktop.org/show_bug.cgi?id=112010
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
[i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140
[i915#168]: https://gitlab.freedesktop.org/drm/intel/issues/168
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#221]: https://gitlab.freedesktop.org/drm/intel/issues/221
[i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
[i915#46]: https://gitlab.freedesktop.org/drm/intel/issues/46
[i915#472]: https://gitlab.freedesktop.org/drm/intel/issues/472
[i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
[i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#563]: https://gitlab.freedesktop.org/drm/intel/issues/563
[i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
[i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
[i915#635]: https://gitlab.freedesktop.org/drm/intel/issues/635
[i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
[i915#679]: https://gitlab.freedesktop.org/drm/intel/issues/679
[i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818
[i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
[i915#831]: https://gitlab.freedesktop.org/drm/intel/issues/831
[i915#84]: https://gitlab.freedesktop.org/drm/intel/issues/84
[i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899
[k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5382 -> IGTPW_3990
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_7809: 861f608ce6e3c1a1ad320a5d18055601cff36e45 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3990: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/index.html
IGT_5382: 8dbe5ce61baa2d563d4dd7c56a018bb1e1077467 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3990/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-01-26 18:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-24 14:06 [igt-dev] [PATCH i-g-t] tests/kms_plane_lowres: Fix CRC mismatch Mika Kahola
2020-01-24 14:55 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2020-01-26 18:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox