* [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner
@ 2020-10-07 6:09 Karthik B S
2020-10-07 7:02 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_big_joiner: Add test to validate big joiner (rev4) Patchwork
` (4 more replies)
0 siblings, 5 replies; 15+ messages in thread
From: Karthik B S @ 2020-10-07 6:09 UTC (permalink / raw)
To: igt-dev
Added negative test to verify the different scenarios for big joiner.
In the test, modeset is done on Pipe A for a big joiner mode and
a second modeset is attempted on Pipe B which is expected to fail.
Same functionality is validated for other pipes as well.
Secondly, the reverse is tested where a modeset is done on Pipe B
and then a second big joiner modeset is attempted on Pipe A which is
expected to fail. Same functionality is validated for other pipes as well.
v2: -Rename HDISPLAY_5K to MAX_HDISPLAY_PER_PIPE. (Manasi)
-Do not assume mode[0] will be the highest mode.
Loop through the mode list to find the 8k mode. (Manasi)
-Add a subtest for verifying basic 8k modeset on all pipes. (Manasi)
v3: -Add break after big joiner output is found in basic subtest. (Manasi)
-Fix the clean up part in the invalid-modeset subtest.
v4: -Add comments in the clean up part of invalid subtest as to why only
particular fb needs to be set to NULL. (Manasi)
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
---
tests/Makefile.sources | 1 +
tests/kms_big_joiner.c | 262 +++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
3 files changed, 264 insertions(+)
create mode 100644 tests/kms_big_joiner.c
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index f32ea9cf..f59ac150 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -38,6 +38,7 @@ TESTS_progs = \
kms_atomic_transition \
kms_available_modes_crc \
kms_big_fb \
+ kms_big_joiner \
kms_busy \
kms_ccs \
kms_concurrent \
diff --git a/tests/kms_big_joiner.c b/tests/kms_big_joiner.c
new file mode 100644
index 00000000..31d2e048
--- /dev/null
+++ b/tests/kms_big_joiner.c
@@ -0,0 +1,262 @@
+/*
+ * Copyright © 2020 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ *
+ * Author:
+ * Karthik B S <karthik.b.s@intel.com>
+ */
+
+#include "igt.h"
+
+#define MAX_HDISPLAY_PER_PIPE 5120
+
+IGT_TEST_DESCRIPTION("Test big joiner");
+
+typedef struct {
+ int drm_fd;
+ igt_display_t display;
+ struct igt_fb fb;
+ int mode_number;
+ int n_pipes;
+ uint32_t big_joiner_output_id;
+} data_t;
+
+static void test_invalid_modeset(data_t *data)
+{
+ drmModeModeInfo *mode;
+ igt_display_t *display = &data->display;
+ igt_output_t *output, *big_joiner_output = NULL, *second_output = NULL;
+ int width = 0, height = 0, i, ret;
+ igt_pipe_t *pipe;
+ igt_plane_t *plane;
+
+ for_each_connected_output(display, output) {
+ mode = &output->config.connector->modes[0];
+
+ if (data->big_joiner_output_id == output->id) {
+ mode = &output->config.connector->modes[data->mode_number];
+ big_joiner_output = output;
+ } else if (second_output == NULL) {
+ second_output = output;
+ }
+
+ width = max(width, mode->hdisplay);
+ height = max(height, mode->vdisplay);
+ }
+
+ igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888,
+ LOCAL_DRM_FORMAT_MOD_NONE, &data->fb);
+
+ for_each_pipe(display, i) {
+ if (i < (data->n_pipes - 1)) {
+ igt_output_set_pipe(big_joiner_output, i);
+
+ mode = &big_joiner_output->config.connector->modes[data->mode_number];
+ igt_output_override_mode(big_joiner_output, mode);
+
+ pipe = &display->pipes[i];
+ plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_plane_set_fb(plane, &data->fb);
+ igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay);
+ igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay);
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ igt_output_set_pipe(second_output, i + 1);
+
+ mode = igt_output_get_mode(second_output);
+
+ pipe = &display->pipes[i + 1];
+ plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_plane_set_fb(plane, &data->fb);
+ igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay);
+ igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay);
+
+ /* This commit is expectd to fail as this pipe is being used for big joiner */
+ ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY |
+ DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ igt_assert_lt(ret, 0);
+
+ igt_output_set_pipe(big_joiner_output, PIPE_NONE);
+ igt_output_set_pipe(second_output, PIPE_NONE);
+
+ pipe = &display->pipes[i];
+ plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY);
+
+ /*
+ * Do not explicitly set the plane of the second output to NULL,
+ * as it is the adjacent pipe to the big joiner output and
+ * setting the big joiner plane to NULL will take care of this.
+ */
+ igt_plane_set_fb(plane, NULL);
+ igt_display_commit2(display, COMMIT_ATOMIC);
+ igt_output_override_mode(big_joiner_output, NULL);
+ }
+ }
+
+ for_each_pipe(display, i) {
+ if (i < (data->n_pipes - 1)) {
+ igt_output_set_pipe(second_output, i + 1);
+
+ mode = igt_output_get_mode(second_output);
+
+ pipe = &display->pipes[i + 1];
+ plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_plane_set_fb(plane, &data->fb);
+ igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay);
+ igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay);
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ igt_output_set_pipe(big_joiner_output, i);
+
+ mode = &big_joiner_output->config.connector->modes[data->mode_number];
+ igt_output_override_mode(big_joiner_output, mode);
+
+ pipe = &display->pipes[i];
+ plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_plane_set_fb(plane, &data->fb);
+ igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay);
+ igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay);
+
+ /* This commit is expected to fail as the adjacent pipe is already in use*/
+ ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY |
+ DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ igt_assert_lt(ret, 0);
+
+ igt_output_set_pipe(big_joiner_output, PIPE_NONE);
+ igt_output_set_pipe(second_output, PIPE_NONE);
+ igt_plane_set_fb(plane, NULL);
+
+ pipe = &display->pipes[i + 1];
+ plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY);
+ igt_plane_set_fb(plane, NULL);
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ igt_output_override_mode(big_joiner_output, NULL);
+ }
+ }
+
+ igt_remove_fb(data->drm_fd, &data->fb);
+}
+
+static void test_basic_modeset(data_t *data)
+{
+ drmModeModeInfo *mode;
+ igt_output_t *output, *big_joiner_output = NULL;
+ igt_display_t *display = &data->display;
+ int width = 0, height = 0, i;
+ igt_pipe_t *pipe;
+ igt_plane_t *plane;
+
+ for_each_connected_output(display, output) {
+ if (data->big_joiner_output_id == output->id) {
+ mode = &output->config.connector->modes[data->mode_number];
+ big_joiner_output = output;
+ width = mode->hdisplay;
+ height = mode->vdisplay;
+ break;
+ }
+ }
+
+ igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888,
+ LOCAL_DRM_FORMAT_MOD_NONE, &data->fb);
+
+ for_each_pipe(display, i) {
+ if (i < (data->n_pipes - 1)) {
+ igt_output_set_pipe(big_joiner_output, i);
+
+ mode = &big_joiner_output->config.connector->modes[data->mode_number];
+ igt_output_override_mode(big_joiner_output, mode);
+
+ pipe = &display->pipes[i];
+ plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_plane_set_fb(plane, &data->fb);
+ igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay);
+ igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay);
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ igt_output_set_pipe(big_joiner_output, PIPE_NONE);
+ igt_plane_set_fb(plane, NULL);
+ igt_display_commit2(display, COMMIT_ATOMIC);
+ }
+ }
+
+ igt_remove_fb(data->drm_fd, &data->fb);
+}
+
+igt_main
+{
+ data_t data;
+ bool big_joiner_mode_found = false;
+ igt_output_t *output;
+ drmModeModeInfo *mode;
+ int valid_output = 0, i;
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
+ kmstest_set_vt_graphics_mode();
+
+ igt_display_require(&data.display, data.drm_fd);
+
+ for_each_connected_output(&data.display, output) {
+ if (!big_joiner_mode_found) {
+ for (i = 0; i < output->config.connector->count_modes; i++) {
+ mode = &output->config.connector->modes[i];
+ if (mode->hdisplay > MAX_HDISPLAY_PER_PIPE) {
+ big_joiner_mode_found = true;
+ data.mode_number = i;
+ data.big_joiner_output_id = output->id;
+ break;
+ }
+ }
+ }
+ valid_output++;
+ }
+
+ data.n_pipes = 0;
+ for_each_pipe(&data.display, i)
+ data.n_pipes++;
+
+ igt_require_f(big_joiner_mode_found, "No output with 5k+ mode found\n");
+ }
+
+ igt_describe("Verify the basic modeset on big joiner mode on all pipes");
+ igt_subtest("basic")
+ test_basic_modeset(&data);
+
+ igt_describe("Verify if the modeset on the adjoining pipe is rejected "
+ "when the pipe is active with a big joiner modeset");
+ igt_subtest("invalid-modeset") {
+ igt_require_f(valid_output > 1, "No valid Second output found\n");
+ test_invalid_modeset(&data);
+ }
+
+ igt_fixture
+ igt_display_fini(&data.display);
+}
diff --git a/tests/meson.build b/tests/meson.build
index 32f011e9..aea7d7f8 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -22,6 +22,7 @@ test_progs = [
'kms_atomic_transition',
'kms_available_modes_crc',
'kms_big_fb',
+ 'kms_big_joiner' ,
'kms_busy',
'kms_ccs',
'kms_concurrent',
--
2.22.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 15+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_big_joiner: Add test to validate big joiner (rev4) 2020-10-07 6:09 [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner Karthik B S @ 2020-10-07 7:02 ` Patchwork 2020-10-07 9:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2020-10-07 7:02 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 4922 bytes --] == Series Details == Series: tests/kms_big_joiner: Add test to validate big joiner (rev4) URL : https://patchwork.freedesktop.org/series/78769/ State : success == Summary == CI Bug Log - changes from CI_DRM_9106 -> IGTPW_5041 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html Known issues ------------ Here are the changes found in IGTPW_5041 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-bsw-kefka: [PASS][1] -> [DMESG-WARN][2] ([i915#1982]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - fi-icl-u2: [PASS][3] -> [DMESG-WARN][4] ([i915#1982]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/fi-icl-u2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/fi-icl-u2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_flip@basic-flip-vs-modeset@b-hdmi-a1: - fi-cml-s: [PASS][5] -> [DMESG-WARN][6] ([i915#1982]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/fi-cml-s/igt@kms_flip@basic-flip-vs-modeset@b-hdmi-a1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/fi-cml-s/igt@kms_flip@basic-flip-vs-modeset@b-hdmi-a1.html #### Possible fixes #### * {igt@core_hotunplug@unbind-rebind}: - {fi-tgl-dsi}: [DMESG-WARN][7] ([i915#1982]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/fi-tgl-dsi/igt@core_hotunplug@unbind-rebind.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/fi-tgl-dsi/igt@core_hotunplug@unbind-rebind.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-icl-u2: [DMESG-WARN][9] ([i915#1982]) -> [PASS][10] +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2: - fi-skl-guc: [DMESG-WARN][11] ([i915#2203]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/fi-skl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/fi-skl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2.html #### Warnings #### * igt@kms_force_connector_basic@prune-stale-modes: - fi-kbl-x1275: [DMESG-WARN][13] ([i915#62] / [i915#92]) -> [DMESG-WARN][14] ([i915#62] / [i915#92] / [i915#95]) +5 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/fi-kbl-x1275/igt@kms_force_connector_basic@prune-stale-modes.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/fi-kbl-x1275/igt@kms_force_connector_basic@prune-stale-modes.html * igt@prime_vgem@basic-fence-flip: - fi-kbl-x1275: [DMESG-WARN][15] ([i915#62] / [i915#92] / [i915#95]) -> [DMESG-WARN][16] ([i915#62] / [i915#92]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/fi-kbl-x1275/igt@prime_vgem@basic-fence-flip.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/fi-kbl-x1275/igt@prime_vgem@basic-fence-flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2203]: https://gitlab.freedesktop.org/drm/intel/issues/2203 [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 Participating hosts (46 -> 39) ------------------------------ Missing (7): fi-ilk-m540 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_5802 -> IGTPW_5041 CI-20190529: 20190529 CI_DRM_9106: 7d08cf1b378a1481fcbe16ac801d5408651a25c0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5041: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html IGT_5802: 0e4fbc60ca5ad6585e642d2ddf8313f3c738426e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@kms_big_joiner@basic +igt@kms_big_joiner@invalid-modeset == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html [-- Attachment #1.2: Type: text/html, Size: 6458 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] 15+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) 2020-10-07 6:09 [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner Karthik B S 2020-10-07 7:02 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_big_joiner: Add test to validate big joiner (rev4) Patchwork @ 2020-10-07 9:36 ` Patchwork 2020-11-17 10:45 ` Karthik B S 2020-11-17 6:21 ` [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner Navare, Manasi ` (2 subsequent siblings) 4 siblings, 1 reply; 15+ messages in thread From: Patchwork @ 2020-10-07 9:36 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 24083 bytes --] == Series Details == Series: tests/kms_big_joiner: Add test to validate big joiner (rev4) URL : https://patchwork.freedesktop.org/series/78769/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9106_full -> IGTPW_5041_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5041_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5041_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_5041/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5041_full: ### IGT changes ### #### Possible regressions #### * igt@gem_blits@basic: - shard-hsw: [PASS][1] -> [FAIL][2] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@gem_blits@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@gem_blits@basic.html - shard-tglb: [PASS][3] -> [FAIL][4] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb7/igt@gem_blits@basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_blits@basic.html - shard-kbl: [PASS][5] -> [FAIL][6] +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@gem_blits@basic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl1/igt@gem_blits@basic.html * igt@gem_ctx_engines@invalid-engines: - shard-iclb: [PASS][7] -> [FAIL][8] +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@gem_ctx_engines@invalid-engines.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb3/igt@gem_ctx_engines@invalid-engines.html - shard-glk: [PASS][9] -> [FAIL][10] +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk6/igt@gem_ctx_engines@invalid-engines.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@gem_ctx_engines@invalid-engines.html - shard-tglb: NOTRUN -> [FAIL][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_param@root-set-no-zeromap-enabled: - shard-snb: [PASS][12] -> [FAIL][13] +2 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html * {igt@kms_big_joiner@basic} (NEW): - shard-tglb: NOTRUN -> [SKIP][14] +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_big_joiner@basic.html - shard-iclb: NOTRUN -> [SKIP][15] +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_big_joiner@basic.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: - shard-kbl: [PASS][16] -> [INCOMPLETE][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_async_flips@alternate-sync-async-flip}: - shard-kbl: [PASS][18] -> [FAIL][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html New tests --------- New tests have been introduced between CI_DRM_9106_full and IGTPW_5041_full: ### New IGT tests (2) ### * igt@kms_big_joiner@basic: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_big_joiner@invalid-modeset: - Statuses : 7 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_5041_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_engines@invalid-engines: - shard-apl: [PASS][20] -> [FAIL][21] ([i915#1635]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl4/igt@gem_ctx_engines@invalid-engines.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl4/igt@gem_ctx_engines@invalid-engines.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-glk: [PASS][22] -> [DMESG-WARN][23] ([i915#118] / [i915#95]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-contexts-forked-all.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [PASS][24] -> [SKIP][25] ([i915#2190]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb8/igt@gem_huc_copy@huc-copy.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb6/igt@gem_huc_copy@huc-copy.html * igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding: - shard-kbl: [PASS][26] -> [FAIL][27] ([i915#54]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html * igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque: - shard-glk: [PASS][28] -> [FAIL][29] ([i915#54]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html - shard-apl: [PASS][30] -> [FAIL][31] ([i915#1635] / [i915#54]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - shard-snb: [PASS][32] -> [SKIP][33] ([fdo#109271]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: - shard-hsw: [PASS][34] -> [FAIL][35] ([i915#2370]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][36] -> [FAIL][37] ([i915#79]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][38] -> [DMESG-WARN][39] ([i915#1982]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-apl: [PASS][40] -> [DMESG-WARN][41] ([i915#1635] / [i915#1982]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-tglb: [PASS][42] -> [DMESG-WARN][43] ([i915#1982]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [PASS][44] -> [DMESG-WARN][45] ([i915#180]) +5 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_psr2_su@frontbuffer: - shard-tglb: [PASS][46] -> [SKIP][47] ([i915#1911]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb5/igt@kms_psr2_su@frontbuffer.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][48] -> [SKIP][49] ([fdo#109441]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb4/igt@kms_psr@psr2_cursor_render.html * igt@kms_universal_plane@universal-plane-gen9-features-pipe-a: - shard-kbl: [PASS][50] -> [DMESG-WARN][51] ([i915#1982]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl2/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html #### Possible fixes #### * igt@gem_exec_reloc@basic-many-active@rcs0: - shard-apl: [FAIL][52] ([i915#1635]) -> [PASS][53] [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@gem_exec_reloc@basic-many-active@rcs0.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@gem_exec_reloc@basic-many-active@rcs0.html * igt@gem_exec_whisper@basic-queues-forked: - shard-glk: [DMESG-WARN][54] ([i915#118] / [i915#95]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-queues-forked.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@gem_exec_whisper@basic-queues-forked.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-hsw: [WARN][56] ([i915#1519]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@i915_pm_rc6_residency@rc6-fence.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@i915_pm_rc6_residency@rc6-fence.html * {igt@kms_async_flips@async-flip-with-page-flip-events}: - shard-apl: [FAIL][58] ([i915#1635] / [i915#2521]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html - shard-tglb: [FAIL][60] ([i915#2521]) -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_async_flips@async-flip-with-page-flip-events.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-apl: [DMESG-WARN][62] ([i915#1635] / [i915#1982]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_cursor_crc@pipe-b-cursor-256x85-random: - shard-glk: [FAIL][64] ([i915#54]) -> [PASS][65] [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html - shard-apl: [FAIL][66] ([i915#1635] / [i915#54]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html - shard-kbl: [FAIL][68] ([i915#54]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-hsw: [FAIL][70] ([i915#96]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1: - shard-hsw: [DMESG-WARN][72] ([i915#1982]) -> [PASS][73] +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [DMESG-WARN][74] ([i915#180]) -> [PASS][75] +4 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: - shard-hsw: [INCOMPLETE][76] ([i915#2055]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-tglb: [DMESG-WARN][78] ([i915#1982]) -> [PASS][79] +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html - shard-kbl: [DMESG-WARN][80] ([i915#1982]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-iclb: [DMESG-WARN][82] ([i915#1982]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [SKIP][84] ([i915#433]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [SKIP][86] ([fdo#109441]) -> [PASS][87] +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_universal_plane@universal-plane-pipe-c-functional: - shard-glk: [FAIL][88] ([i915#331]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html - shard-kbl: [FAIL][90] ([i915#331]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html - shard-apl: [FAIL][92] ([i915#1635] / [i915#331]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html * igt@sysfs_heartbeat_interval@mixed@vcs0: - shard-kbl: [INCOMPLETE][94] ([i915#1731]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@sysfs_heartbeat_interval@mixed@vcs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@sysfs_heartbeat_interval@mixed@vcs0.html #### Warnings #### * igt@gem_exec_reloc@basic-many-active@vcs1: - shard-tglb: [FAIL][96] -> [FAIL][97] ([i915#2389]) +2 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@gem_exec_reloc@basic-many-active@vcs1.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@gem_exec_reloc@basic-many-active@vcs1.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-tglb: [DMESG-WARN][98] ([i915#2411]) -> [SKIP][99] ([i915#1904]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@i915_pm_dc@dc3co-vpb-simulation.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_suspend@forcewake: - shard-tglb: [INCOMPLETE][100] ([i915#1436] / [i915#1602] / [i915#1887] / [i915#2411] / [i915#456]) -> [DMESG-WARN][101] ([i915#2411]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb6/igt@i915_suspend@forcewake.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_suspend@forcewake.html * igt@kms_content_protection@atomic-dpms: - shard-apl: [FAIL][102] ([fdo#110321] / [fdo#110336] / [i915#1635]) -> [TIMEOUT][103] ([i915#1319] / [i915#1635]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@atomic-dpms.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@legacy: - shard-apl: [TIMEOUT][104] ([i915#1319] / [i915#1635]) -> [FAIL][105] ([fdo#110321] / [fdo#110336] / [i915#1635]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@legacy.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_content_protection@legacy.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [SKIP][106] ([fdo#109349]) -> [DMESG-WARN][107] ([i915#1226]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-edp.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321 [fdo#110336]: https://bugs.freedesktop.org/show_bug.cgi?id=110336 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [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#1519]: https://gitlab.freedesktop.org/drm/intel/issues/1519 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1887]: https://gitlab.freedesktop.org/drm/intel/issues/1887 [i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904 [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2055]: https://gitlab.freedesktop.org/drm/intel/issues/2055 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2370]: https://gitlab.freedesktop.org/drm/intel/issues/2370 [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#331]: https://gitlab.freedesktop.org/drm/intel/issues/331 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96 Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5802 -> IGTPW_5041 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_9106: 7d08cf1b378a1481fcbe16ac801d5408651a25c0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5041: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html IGT_5802: 0e4fbc60ca5ad6585e642d2ddf8313f3c738426e @ 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_5041/index.html [-- Attachment #1.2: Type: text/html, Size: 28450 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] 15+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) 2020-10-07 9:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-11-17 10:45 ` Karthik B S 2020-11-17 17:11 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 15+ messages in thread From: Karthik B S @ 2020-11-17 10:45 UTC (permalink / raw) To: igt-dev, Vudum, Lakshminarayana [-- Attachment #1.1: Type: text/plain, Size: 27711 bytes --] Hi Lakshmi, This looks like a false negative. As the patch is now rb'ed, could you please trigger a rerun? So that I can get this merged once the CI is green. Thanks, Karthik.B.S On 10/7/2020 3:06 PM, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* tests/kms_big_joiner: Add test to validate big joiner (rev4) > *URL:* https://patchwork.freedesktop.org/series/78769/ > <https://patchwork.freedesktop.org/series/78769/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html> > > > CI Bug Log - changes from CI_DRM_9106_full -> IGTPW_5041_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_5041_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_5041_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_5041/index.html > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_5041_full: > > > IGT changes > > > Possible regressions > > * > > igt@gem_blits@basic: > > o > > shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@gem_blits@basic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@gem_blits@basic.html> > +3 similar issues > > o > > shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb7/igt@gem_blits@basic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_blits@basic.html> > +1 similar issue > > o > > shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@gem_blits@basic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl1/igt@gem_blits@basic.html> > +2 similar issues > > * > > igt@gem_ctx_engines@invalid-engines: > > o > > shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@gem_ctx_engines@invalid-engines.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb3/igt@gem_ctx_engines@invalid-engines.html> > +2 similar issues > > o > > shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk6/igt@gem_ctx_engines@invalid-engines.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@gem_ctx_engines@invalid-engines.html> > +2 similar issues > > o > > shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_ctx_engines@invalid-engines.html> > > * > > igt@gem_ctx_param@root-set-no-zeromap-enabled: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> > +2 similar issues > * > > {igt@kms_big_joiner@basic} (NEW): > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_big_joiner@basic.html> > +1 similar issue > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_big_joiner@basic.html> > +1 similar issue > > * > > igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> > > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * {igt@kms_async_flips@alternate-sync-async-flip}: > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> > > > New tests > > New tests have been introduced between CI_DRM_9106_full and > IGTPW_5041_full: > > > New IGT tests (2) > > * > > igt@kms_big_joiner@basic: > > o Statuses : 7 skip(s) > o Exec time: [0.0] s > * > > igt@kms_big_joiner@invalid-modeset: > > o Statuses : 7 skip(s) > o Exec time: [0.0] s > > > Known issues > > Here are the changes found in IGTPW_5041_full that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@gem_ctx_engines@invalid-engines: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) +2 > similar issues > * > > igt@gem_exec_whisper@basic-contexts-forked-all: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-contexts-forked-all.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@gem_exec_whisper@basic-contexts-forked-all.html> > (i915#118 > <https://gitlab.freedesktop.org/drm/intel/issues/118> / > i915#95 <https://gitlab.freedesktop.org/drm/intel/issues/95>) > +1 similar issue > * > > igt@gem_huc_copy@huc-copy: > > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb8/igt@gem_huc_copy@huc-copy.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb6/igt@gem_huc_copy@huc-copy.html> > (i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > * > > igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> > (i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>) > +1 similar issue > * > > igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque: > > o > > shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > (i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>) > > o > > shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>) > +1 similar issue > > * > > igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > * > > igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: > > o shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> > (i915#2370 <https://gitlab.freedesktop.org/drm/intel/issues/2370>) > * > > igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) > * > > igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> > (i915#1982 <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > * > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#1982 <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: > > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) +3 > similar issues > * > > igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > (i915#180 > <https://gitlab.freedesktop.org/drm/intel/issues/180>) +5 > similar issues > * > > igt@kms_psr2_su@frontbuffer: > > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb5/igt@kms_psr2_su@frontbuffer.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_psr2_su@frontbuffer.html> > (i915#1911 <https://gitlab.freedesktop.org/drm/intel/issues/1911>) > * > > igt@kms_psr@psr2_cursor_render: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@kms_psr@psr2_cursor_render.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb4/igt@kms_psr@psr2_cursor_render.html> > (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > * > > igt@kms_universal_plane@universal-plane-gen9-features-pipe-a: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl2/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> > (i915#1982 <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > > Possible fixes > > * > > igt@gem_exec_reloc@basic-many-active@rcs0: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@gem_exec_reloc@basic-many-active@rcs0.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@gem_exec_reloc@basic-many-active@rcs0.html> > * > > igt@gem_exec_whisper@basic-queues-forked: > > o shard-glk: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-queues-forked.html> > (i915#118 > <https://gitlab.freedesktop.org/drm/intel/issues/118> / > i915#95 <https://gitlab.freedesktop.org/drm/intel/issues/95>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@gem_exec_whisper@basic-queues-forked.html> > * > > igt@i915_pm_rc6_residency@rc6-fence: > > o shard-hsw: WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@i915_pm_rc6_residency@rc6-fence.html> > (i915#1519 > <https://gitlab.freedesktop.org/drm/intel/issues/1519>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@i915_pm_rc6_residency@rc6-fence.html> > * > > {igt@kms_async_flips@async-flip-with-page-flip-events}: > > o > > shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#2521 > <https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> > > o > > shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_async_flips@async-flip-with-page-flip-events.html> > (i915#2521 > <https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_async_flips@async-flip-with-page-flip-events.html> > > * > > igt@kms_big_fb@x-tiled-64bpp-rotate-180: > > o shard-apl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> > * > > igt@kms_cursor_crc@pipe-b-cursor-256x85-random: > > o > > shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > (i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > o > > shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > o > > shard-kbl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > (i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > * > > igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: > > o shard-hsw: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> > (i915#96 <https://gitlab.freedesktop.org/drm/intel/issues/96>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> > * > > igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1: > > o shard-hsw: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> > +1 similar issue > * > > igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: > > o shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > (i915#180 > <https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > +4 similar issues > * > > igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: > > o shard-hsw: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > (i915#2055 > <https://gitlab.freedesktop.org/drm/intel/issues/2055>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > * > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: > > o > > shard-tglb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > +2 similar issues > > o > > shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > > * > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: > > o shard-iclb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> > * > > igt@kms_hdmi_inject@inject-audio: > > o shard-tglb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html> > (i915#433 > <https://gitlab.freedesktop.org/drm/intel/issues/433>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html> > * > > igt@kms_psr@psr2_primary_page_flip: > > o shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html> > (fdo#109441 > <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html> > +2 similar issues > * > > igt@kms_universal_plane@universal-plane-pipe-c-functional: > > o > > shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > (i915#331 > <https://gitlab.freedesktop.org/drm/intel/issues/331>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > o > > shard-kbl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > (i915#331 > <https://gitlab.freedesktop.org/drm/intel/issues/331>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > o > > shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#331 > <https://gitlab.freedesktop.org/drm/intel/issues/331>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > * > > igt@sysfs_heartbeat_interval@mixed@vcs0: > > o shard-kbl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@sysfs_heartbeat_interval@mixed@vcs0.html> > (i915#1731 > <https://gitlab.freedesktop.org/drm/intel/issues/1731>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@sysfs_heartbeat_interval@mixed@vcs0.html> > > > Warnings > > * > > igt@gem_exec_reloc@basic-many-active@vcs1: > > o shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@gem_exec_reloc@basic-many-active@vcs1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@gem_exec_reloc@basic-many-active@vcs1.html> > (i915#2389 > <https://gitlab.freedesktop.org/drm/intel/issues/2389>) +2 > similar issues > * > > igt@i915_pm_dc@dc3co-vpb-simulation: > > o shard-tglb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> > (i915#2411 > <https://gitlab.freedesktop.org/drm/intel/issues/2411>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_pm_dc@dc3co-vpb-simulation.html> > (i915#1904 <https://gitlab.freedesktop.org/drm/intel/issues/1904>) > * > > igt@i915_suspend@forcewake: > > o shard-tglb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb6/igt@i915_suspend@forcewake.html> > (i915#1436 > <https://gitlab.freedesktop.org/drm/intel/issues/1436> / > i915#1602 > <https://gitlab.freedesktop.org/drm/intel/issues/1602> / > i915#1887 > <https://gitlab.freedesktop.org/drm/intel/issues/1887> / > i915#2411 > <https://gitlab.freedesktop.org/drm/intel/issues/2411> / > i915#456 > <https://gitlab.freedesktop.org/drm/intel/issues/456>) -> > DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_suspend@forcewake.html> > (i915#2411 <https://gitlab.freedesktop.org/drm/intel/issues/2411>) > * > > igt@kms_content_protection@atomic-dpms: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@atomic-dpms.html> > (fdo#110321 > <https://bugs.freedesktop.org/show_bug.cgi?id=110321> / > fdo#110336 > <https://bugs.freedesktop.org/show_bug.cgi?id=110336> / > i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> > TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl7/igt@kms_content_protection@atomic-dpms.html> > (i915#1319 > <https://gitlab.freedesktop.org/drm/intel/issues/1319> / > i915#1635 <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > * > > igt@kms_content_protection@legacy: > > o shard-apl: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@legacy.html> > (i915#1319 > <https://gitlab.freedesktop.org/drm/intel/issues/1319> / > i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> > FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_content_protection@legacy.html> > (fdo#110321 > <https://bugs.freedesktop.org/show_bug.cgi?id=110321> / > fdo#110336 > <https://bugs.freedesktop.org/show_bug.cgi?id=110336> / > i915#1635 <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > * > > igt@kms_dp_dsc@basic-dsc-enable-edp: > > o shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-edp.html> > (fdo#109349 > <https://bugs.freedesktop.org/show_bug.cgi?id=109349>) -> > DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html> > (i915#1226 <https://gitlab.freedesktop.org/drm/intel/issues/1226>) > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Participating hosts (11 -> 8) > > Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_5802 -> IGTPW_5041 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_9106: 7d08cf1b378a1481fcbe16ac801d5408651a25c0 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_5041: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html > IGT_5802: 0e4fbc60ca5ad6585e642d2ddf8313f3c738426e @ > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit > [-- Attachment #1.2: Type: text/html, Size: 41077 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] 15+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) 2020-11-17 10:45 ` Karthik B S @ 2020-11-17 17:11 ` Vudum, Lakshminarayana 2020-11-18 3:50 ` Karthik B S 0 siblings, 1 reply; 15+ messages in thread From: Vudum, Lakshminarayana @ 2020-11-17 17:11 UTC (permalink / raw) To: B S, Karthik, igt-dev@lists.freedesktop.org [-- Attachment #1.1: Type: text/plain, Size: 24336 bytes --] @Karthik B S<mailto:karthik.b.s@intel.com> Any reason why I am unable to load the regression failures? From: Karthik B S <karthik.b.s@intel.com> Sent: Tuesday, November 17, 2020 2:46 AM To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) Hi Lakshmi, This looks like a false negative. As the patch is now rb'ed, could you please trigger a rerun? So that I can get this merged once the CI is green. Thanks, Karthik.B.S On 10/7/2020 3:06 PM, Patchwork wrote: Patch Details Series: tests/kms_big_joiner: Add test to validate big joiner (rev4) URL: https://patchwork.freedesktop.org/series/78769/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html CI Bug Log - changes from CI_DRM_9106_full -> IGTPW_5041_full Summary FAILURE Serious unknown changes coming with IGTPW_5041_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5041_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_5041/index.html Possible new issues Here are the unknown changes that may have been introduced in IGTPW_5041_full: IGT changes Possible regressions * igt@gem_blits@basic: * shard-hsw: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@gem_blits@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@gem_blits@basic.html> +3 similar issues * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb7/igt@gem_blits@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_blits@basic.html> +1 similar issue * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@gem_blits@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl1/igt@gem_blits@basic.html> +2 similar issues * igt@gem_ctx_engines@invalid-engines: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@gem_ctx_engines@invalid-engines.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb3/igt@gem_ctx_engines@invalid-engines.html> +2 similar issues * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk6/igt@gem_ctx_engines@invalid-engines.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@gem_ctx_engines@invalid-engines.html> +2 similar issues * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_ctx_engines@invalid-engines.html> * igt@gem_ctx_param@root-set-no-zeromap-enabled: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> +2 similar issues * {igt@kms_big_joiner@basic} (NEW): * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_big_joiner@basic.html> +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_big_joiner@basic.html> +1 similar issue * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_async_flips@alternate-sync-async-flip}: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> New tests New tests have been introduced between CI_DRM_9106_full and IGTPW_5041_full: New IGT tests (2) * igt@kms_big_joiner@basic: * Statuses : 7 skip(s) * Exec time: [0.0] s * igt@kms_big_joiner@invalid-modeset: * Statuses : 7 skip(s) * Exec time: [0.0] s Known issues Here are the changes found in IGTPW_5041_full that come from known issues: IGT changes Issues hit * igt@gem_ctx_engines@invalid-engines: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) +2 similar issues * igt@gem_exec_whisper@basic-contexts-forked-all: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-contexts-forked-all.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@gem_exec_whisper@basic-contexts-forked-all.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / i915#95<https://gitlab.freedesktop.org/drm/intel/issues/95>) +1 similar issue * igt@gem_huc_copy@huc-copy: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb8/igt@gem_huc_copy@huc-copy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb6/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) * igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> (i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) +1 similar issue * igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> (i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) +1 similar issue * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: * shard-hsw: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> (i915#2370<https://gitlab.freedesktop.org/drm/intel/issues/2370>) * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) * igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) +3 similar issues * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +5 similar issues * igt@kms_psr2_su@frontbuffer: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb5/igt@kms_psr2_su@frontbuffer.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_psr2_su@frontbuffer.html> (i915#1911<https://gitlab.freedesktop.org/drm/intel/issues/1911>) * igt@kms_psr@psr2_cursor_render: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@kms_psr@psr2_cursor_render.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb4/igt@kms_psr@psr2_cursor_render.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@kms_universal_plane@universal-plane-gen9-features-pipe-a: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl2/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) Possible fixes * igt@gem_exec_reloc@basic-many-active@rcs0: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@gem_exec_reloc@basic-many-active@rcs0.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@gem_exec_reloc@basic-many-active@rcs0.html> * igt@gem_exec_whisper@basic-queues-forked: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-queues-forked.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / i915#95<https://gitlab.freedesktop.org/drm/intel/issues/95>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@gem_exec_whisper@basic-queues-forked.html> * igt@i915_pm_rc6_residency@rc6-fence: * shard-hsw: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@i915_pm_rc6_residency@rc6-fence.html> (i915#1519<https://gitlab.freedesktop.org/drm/intel/issues/1519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@i915_pm_rc6_residency@rc6-fence.html> * {igt@kms_async_flips@async-flip-with-page-flip-events}: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#2521<https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_async_flips@async-flip-with-page-flip-events.html> (i915#2521<https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_async_flips@async-flip-with-page-flip-events.html> * igt@kms_big_fb@x-tiled-64bpp-rotate-180: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> * igt@kms_cursor_crc@pipe-b-cursor-256x85-random: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> (i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> (i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: * shard-hsw: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> (i915#96<https://gitlab.freedesktop.org/drm/intel/issues/96>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1: * shard-hsw: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> +1 similar issue * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> +4 similar issues * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: * shard-hsw: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> (i915#2055<https://gitlab.freedesktop.org/drm/intel/issues/2055>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: * shard-tglb: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> +2 similar issues * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: * shard-iclb: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> * igt@kms_hdmi_inject@inject-audio: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html> (i915#433<https://gitlab.freedesktop.org/drm/intel/issues/433>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html> * igt@kms_psr@psr2_primary_page_flip: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html> +2 similar issues * igt@kms_universal_plane@universal-plane-pipe-c-functional: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> (i915#331<https://gitlab.freedesktop.org/drm/intel/issues/331>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> (i915#331<https://gitlab.freedesktop.org/drm/intel/issues/331>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#331<https://gitlab.freedesktop.org/drm/intel/issues/331>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> * igt@sysfs_heartbeat_interval@mixed@vcs0: * shard-kbl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@sysfs_heartbeat_interval@mixed@vcs0.html> (i915#1731<https://gitlab.freedesktop.org/drm/intel/issues/1731>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@sysfs_heartbeat_interval@mixed@vcs0.html> Warnings * igt@gem_exec_reloc@basic-many-active@vcs1: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@gem_exec_reloc@basic-many-active@vcs1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@gem_exec_reloc@basic-many-active@vcs1.html> (i915#2389<https://gitlab.freedesktop.org/drm/intel/issues/2389>) +2 similar issues * igt@i915_pm_dc@dc3co-vpb-simulation: * shard-tglb: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#1904<https://gitlab.freedesktop.org/drm/intel/issues/1904>) * igt@i915_suspend@forcewake: * shard-tglb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb6/igt@i915_suspend@forcewake.html> (i915#1436<https://gitlab.freedesktop.org/drm/intel/issues/1436> / i915#1602<https://gitlab.freedesktop.org/drm/intel/issues/1602> / i915#1887<https://gitlab.freedesktop.org/drm/intel/issues/1887> / i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411> / i915#456<https://gitlab.freedesktop.org/drm/intel/issues/456>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_suspend@forcewake.html> (i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411>) * igt@kms_content_protection@atomic-dpms: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@atomic-dpms.html> (fdo#110321<https://bugs.freedesktop.org/show_bug.cgi?id=110321> / fdo#110336<https://bugs.freedesktop.org/show_bug.cgi?id=110336> / i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl7/igt@kms_content_protection@atomic-dpms.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319> / i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) * igt@kms_content_protection@legacy: * shard-apl: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@legacy.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319> / i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_content_protection@legacy.html> (fdo#110321<https://bugs.freedesktop.org/show_bug.cgi?id=110321> / fdo#110336<https://bugs.freedesktop.org/show_bug.cgi?id=110336> / i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) * igt@kms_dp_dsc@basic-dsc-enable-edp: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-edp.html> (fdo#109349<https://bugs.freedesktop.org/show_bug.cgi?id=109349>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html> (i915#1226<https://gitlab.freedesktop.org/drm/intel/issues/1226>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Participating hosts (11 -> 8) Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 Build changes * CI: CI-20190529 -> None * IGT: IGT_5802 -> IGTPW_5041 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_9106: 7d08cf1b378a1481fcbe16ac801d5408651a25c0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5041: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html IGT_5802: 0e4fbc60ca5ad6585e642d2ddf8313f3c738426e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #1.2: Type: text/html, Size: 58886 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] 15+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) 2020-11-17 17:11 ` Vudum, Lakshminarayana @ 2020-11-18 3:50 ` Karthik B S 2020-11-18 16:36 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 15+ messages in thread From: Karthik B S @ 2020-11-18 3:50 UTC (permalink / raw) To: Vudum, Lakshminarayana, igt-dev@lists.freedesktop.org [-- Attachment #1.1: Type: text/plain, Size: 30210 bytes --] On 11/17/2020 10:41 PM, Vudum, Lakshminarayana wrote: > Project List - Patchwork > > @Karthik B S <mailto:karthik.b.s@intel.com> Any reason why I am unable > to load the regression failures? > No, I'm not aware of the reason here. Any steps that can/should be taken from my side for this? Thanks, Karthik.B.S > *From:* Karthik B S <karthik.b.s@intel.com> > *Sent:* Tuesday, November 17, 2020 2:46 AM > *To:* igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana > <lakshminarayana.vudum@intel.com> > *Subject:* Re: ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test > to validate big joiner (rev4) > > Hi Lakshmi, > > This looks like a false negative. > > As the patch is now rb'ed, could you please trigger a rerun? > > So that I can get this merged once the CI is green. > > Thanks, > > Karthik.B.S > > On 10/7/2020 3:06 PM, Patchwork wrote: > > *Patch Details* > > *Series:* > > > > tests/kms_big_joiner: Add test to validate big joiner (rev4) > > *URL:* > > > > https://patchwork.freedesktop.org/series/78769/ > <https://patchwork.freedesktop.org/series/78769/> > > *State:* > > > > failure > > *Details:* > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html> > > > CI Bug Log - changes from CI_DRM_9106_full -> IGTPW_5041_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_5041_full absolutely > need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_5041_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_5041/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html> > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_5041_full: > > > IGT changes > > > Possible regressions > > * igt@gem_blits@basic: > > o shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@gem_blits@basic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@gem_blits@basic.html> > +3 similar issues > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb7/igt@gem_blits@basic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_blits@basic.html> > +1 similar issue > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@gem_blits@basic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl1/igt@gem_blits@basic.html> > +2 similar issues > > * igt@gem_ctx_engines@invalid-engines: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@gem_ctx_engines@invalid-engines.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb3/igt@gem_ctx_engines@invalid-engines.html> > +2 similar issues > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk6/igt@gem_ctx_engines@invalid-engines.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@gem_ctx_engines@invalid-engines.html> > +2 similar issues > o shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_ctx_engines@invalid-engines.html> > > * igt@gem_ctx_param@root-set-no-zeromap-enabled: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> > +2 similar issues > > * {igt@kms_big_joiner@basic} (NEW): > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_big_joiner@basic.html> > +1 similar issue > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_big_joiner@basic.html> > +1 similar issue > > * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> > > > Suppressed > > The following results come from untrusted machines, tests, or > statuses. > They do not affect the overall result. > > * {igt@kms_async_flips@alternate-sync-async-flip}: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> > > > New tests > > New tests have been introduced between CI_DRM_9106_full and > IGTPW_5041_full: > > > New IGT tests (2) > > * igt@kms_big_joiner@basic: > > o Statuses : 7 skip(s) > o Exec time: [0.0] s > > * igt@kms_big_joiner@invalid-modeset: > > o Statuses : 7 skip(s) > o Exec time: [0.0] s > > > Known issues > > Here are the changes found in IGTPW_5041_full that come from known > issues: > > > IGT changes > > > Issues hit > > * igt@gem_ctx_engines@invalid-engines: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) +2 > similar issues > > * igt@gem_exec_whisper@basic-contexts-forked-all: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-contexts-forked-all.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@gem_exec_whisper@basic-contexts-forked-all.html> > (i915#118 > <https://gitlab.freedesktop.org/drm/intel/issues/118> / > i915#95 > <https://gitlab.freedesktop.org/drm/intel/issues/95>) +1 > similar issue > > * igt@gem_huc_copy@huc-copy: > > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb8/igt@gem_huc_copy@huc-copy.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb6/igt@gem_huc_copy@huc-copy.html> > (i915#2190 > <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > > * igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> > (i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) +1 > similar issue > > * igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > (i915#54 <https://gitlab.freedesktop.org/drm/intel/issues/54>) > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) +1 > similar issue > > * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > > * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: > > o shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> > (i915#2370 > <https://gitlab.freedesktop.org/drm/intel/issues/2370>) > > * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) > > * igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: > > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) +3 > similar issues > > * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > (i915#180 > <https://gitlab.freedesktop.org/drm/intel/issues/180>) +5 > similar issues > > * igt@kms_psr2_su@frontbuffer: > > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb5/igt@kms_psr2_su@frontbuffer.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_psr2_su@frontbuffer.html> > (i915#1911 > <https://gitlab.freedesktop.org/drm/intel/issues/1911>) > > * igt@kms_psr@psr2_cursor_render: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@kms_psr@psr2_cursor_render.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb4/igt@kms_psr@psr2_cursor_render.html> > (fdo#109441 > <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > > * igt@kms_universal_plane@universal-plane-gen9-features-pipe-a: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl2/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > > Possible fixes > > * igt@gem_exec_reloc@basic-many-active@rcs0: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@gem_exec_reloc@basic-many-active@rcs0.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@gem_exec_reloc@basic-many-active@rcs0.html> > > * igt@gem_exec_whisper@basic-queues-forked: > > o shard-glk: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-queues-forked.html> > (i915#118 > <https://gitlab.freedesktop.org/drm/intel/issues/118> / > i915#95 > <https://gitlab.freedesktop.org/drm/intel/issues/95>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@gem_exec_whisper@basic-queues-forked.html> > > * igt@i915_pm_rc6_residency@rc6-fence: > > o shard-hsw: WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@i915_pm_rc6_residency@rc6-fence.html> > (i915#1519 > <https://gitlab.freedesktop.org/drm/intel/issues/1519>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@i915_pm_rc6_residency@rc6-fence.html> > > * {igt@kms_async_flips@async-flip-with-page-flip-events}: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#2521 > <https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> > o shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_async_flips@async-flip-with-page-flip-events.html> > (i915#2521 > <https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_async_flips@async-flip-with-page-flip-events.html> > > * igt@kms_big_fb@x-tiled-64bpp-rotate-180: > > o shard-apl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> > > * igt@kms_cursor_crc@pipe-b-cursor-256x85-random: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > (i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > o shard-kbl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > (i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: > > o shard-hsw: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> > (i915#96 > <https://gitlab.freedesktop.org/drm/intel/issues/96>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> > > * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1: > > o shard-hsw: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> > +1 similar issue > > * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: > > o shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > (i915#180 > <https://gitlab.freedesktop.org/drm/intel/issues/180>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > +4 similar issues > > * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: > > o shard-hsw: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > (i915#2055 > <https://gitlab.freedesktop.org/drm/intel/issues/2055>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: > > o shard-tglb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > +2 similar issues > o shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: > > o shard-iclb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> > > * igt@kms_hdmi_inject@inject-audio: > > o shard-tglb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html> > (i915#433 > <https://gitlab.freedesktop.org/drm/intel/issues/433>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html> > > * igt@kms_psr@psr2_primary_page_flip: > > o shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html> > (fdo#109441 > <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html> > +2 similar issues > > * igt@kms_universal_plane@universal-plane-pipe-c-functional: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > (i915#331 > <https://gitlab.freedesktop.org/drm/intel/issues/331>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > o shard-kbl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > (i915#331 > <https://gitlab.freedesktop.org/drm/intel/issues/331>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> / > i915#331 > <https://gitlab.freedesktop.org/drm/intel/issues/331>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > * igt@sysfs_heartbeat_interval@mixed@vcs0: > > o shard-kbl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@sysfs_heartbeat_interval@mixed@vcs0.html> > (i915#1731 > <https://gitlab.freedesktop.org/drm/intel/issues/1731>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@sysfs_heartbeat_interval@mixed@vcs0.html> > > > Warnings > > * igt@gem_exec_reloc@basic-many-active@vcs1: > > o shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@gem_exec_reloc@basic-many-active@vcs1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@gem_exec_reloc@basic-many-active@vcs1.html> > (i915#2389 > <https://gitlab.freedesktop.org/drm/intel/issues/2389>) +2 > similar issues > > * igt@i915_pm_dc@dc3co-vpb-simulation: > > o shard-tglb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> > (i915#2411 > <https://gitlab.freedesktop.org/drm/intel/issues/2411>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_pm_dc@dc3co-vpb-simulation.html> > (i915#1904 > <https://gitlab.freedesktop.org/drm/intel/issues/1904>) > > * igt@i915_suspend@forcewake: > > o shard-tglb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb6/igt@i915_suspend@forcewake.html> > (i915#1436 > <https://gitlab.freedesktop.org/drm/intel/issues/1436> / > i915#1602 > <https://gitlab.freedesktop.org/drm/intel/issues/1602> / > i915#1887 > <https://gitlab.freedesktop.org/drm/intel/issues/1887> / > i915#2411 > <https://gitlab.freedesktop.org/drm/intel/issues/2411> / > i915#456 > <https://gitlab.freedesktop.org/drm/intel/issues/456>) -> > DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_suspend@forcewake.html> > (i915#2411 > <https://gitlab.freedesktop.org/drm/intel/issues/2411>) > > * igt@kms_content_protection@atomic-dpms: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@atomic-dpms.html> > (fdo#110321 > <https://bugs.freedesktop.org/show_bug.cgi?id=110321> / > fdo#110336 > <https://bugs.freedesktop.org/show_bug.cgi?id=110336> / > i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> > TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl7/igt@kms_content_protection@atomic-dpms.html> > (i915#1319 > <https://gitlab.freedesktop.org/drm/intel/issues/1319> / > i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > > * igt@kms_content_protection@legacy: > > o shard-apl: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@legacy.html> > (i915#1319 > <https://gitlab.freedesktop.org/drm/intel/issues/1319> / > i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> > FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_content_protection@legacy.html> > (fdo#110321 > <https://bugs.freedesktop.org/show_bug.cgi?id=110321> / > fdo#110336 > <https://bugs.freedesktop.org/show_bug.cgi?id=110336> / > i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > > * igt@kms_dp_dsc@basic-dsc-enable-edp: > > o shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-edp.html> > (fdo#109349 > <https://bugs.freedesktop.org/show_bug.cgi?id=109349>) -> > DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html> > (i915#1226 > <https://gitlab.freedesktop.org/drm/intel/issues/1226>) > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Participating hosts (11 -> 8) > > Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_5802 -> IGTPW_5041 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_9106: 7d08cf1b378a1481fcbe16ac801d5408651a25c0 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_5041: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html> > IGT_5802: 0e4fbc60ca5ad6585e642d2ddf8313f3c738426e @ > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit > [-- Attachment #1.2: Type: text/html, Size: 64035 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] 15+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) 2020-11-18 3:50 ` Karthik B S @ 2020-11-18 16:36 ` Vudum, Lakshminarayana 2020-11-19 6:18 ` Karthik B S 0 siblings, 1 reply; 15+ messages in thread From: Vudum, Lakshminarayana @ 2020-11-18 16:36 UTC (permalink / raw) To: B S, Karthik, igt-dev@lists.freedesktop.org [-- Attachment #1.1: Type: text/plain, Size: 25065 bytes --] @Karthik B S<mailto:karthik.b.s@intel.com> I am checking with CI team. Once the broken links are working, I will file the issues. Thanks, Lakshmi. From: Karthik B S <karthik.b.s@intel.com> Sent: Tuesday, November 17, 2020 7:50 PM To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>; igt-dev@lists.freedesktop.org Subject: Re: ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) On 11/17/2020 10:41 PM, Vudum, Lakshminarayana wrote: @Karthik B S<mailto:karthik.b.s@intel.com> Any reason why I am unable to load the regression failures? No, I'm not aware of the reason here. Any steps that can/should be taken from my side for this? Thanks, Karthik.B.S From: Karthik B S <karthik.b.s@intel.com><mailto:karthik.b.s@intel.com> Sent: Tuesday, November 17, 2020 2:46 AM To: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com><mailto:lakshminarayana.vudum@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) Hi Lakshmi, This looks like a false negative. As the patch is now rb'ed, could you please trigger a rerun? So that I can get this merged once the CI is green. Thanks, Karthik.B.S On 10/7/2020 3:06 PM, Patchwork wrote: Patch Details Series: tests/kms_big_joiner: Add test to validate big joiner (rev4) URL: https://patchwork.freedesktop.org/series/78769/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html CI Bug Log - changes from CI_DRM_9106_full -> IGTPW_5041_full Summary FAILURE Serious unknown changes coming with IGTPW_5041_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5041_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_5041/index.html Possible new issues Here are the unknown changes that may have been introduced in IGTPW_5041_full: IGT changes Possible regressions 1. igt@gem_blits@basic: * shard-hsw: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@gem_blits@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@gem_blits@basic.html> +3 similar issues * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb7/igt@gem_blits@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_blits@basic.html> +1 similar issue * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@gem_blits@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl1/igt@gem_blits@basic.html> +2 similar issues 1. igt@gem_ctx_engines@invalid-engines: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@gem_ctx_engines@invalid-engines.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb3/igt@gem_ctx_engines@invalid-engines.html> +2 similar issues * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk6/igt@gem_ctx_engines@invalid-engines.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@gem_ctx_engines@invalid-engines.html> +2 similar issues * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_ctx_engines@invalid-engines.html> 1. igt@gem_ctx_param@root-set-no-zeromap-enabled: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> +2 similar issues 1. {igt@kms_big_joiner@basic} (NEW): * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_big_joiner@basic.html> +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_big_joiner@basic.html> +1 similar issue 1. igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. 1. {igt@kms_async_flips@alternate-sync-async-flip}: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> New tests New tests have been introduced between CI_DRM_9106_full and IGTPW_5041_full: New IGT tests (2) 1. igt@kms_big_joiner@basic: * Statuses : 7 skip(s) * Exec time: [0.0] s 1. igt@kms_big_joiner@invalid-modeset: * Statuses : 7 skip(s) * Exec time: [0.0] s Known issues Here are the changes found in IGTPW_5041_full that come from known issues: IGT changes Issues hit 1. igt@gem_ctx_engines@invalid-engines: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) +2 similar issues 1. igt@gem_exec_whisper@basic-contexts-forked-all: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-contexts-forked-all.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@gem_exec_whisper@basic-contexts-forked-all.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / i915#95<https://gitlab.freedesktop.org/drm/intel/issues/95>) +1 similar issue 1. igt@gem_huc_copy@huc-copy: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb8/igt@gem_huc_copy@huc-copy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb6/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) 1. igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> (i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) +1 similar issue 1. igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> (i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) +1 similar issue 1. igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) 1. igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: * shard-hsw: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> (i915#2370<https://gitlab.freedesktop.org/drm/intel/issues/2370>) 1. igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) 1. igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) 1. igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) 1. igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) +3 similar issues 1. igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +5 similar issues 1. igt@kms_psr2_su@frontbuffer: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb5/igt@kms_psr2_su@frontbuffer.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_psr2_su@frontbuffer.html> (i915#1911<https://gitlab.freedesktop.org/drm/intel/issues/1911>) 1. igt@kms_psr@psr2_cursor_render: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@kms_psr@psr2_cursor_render.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb4/igt@kms_psr@psr2_cursor_render.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) 1. igt@kms_universal_plane@universal-plane-gen9-features-pipe-a: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl2/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) Possible fixes 1. igt@gem_exec_reloc@basic-many-active@rcs0: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@gem_exec_reloc@basic-many-active@rcs0.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@gem_exec_reloc@basic-many-active@rcs0.html> 1. igt@gem_exec_whisper@basic-queues-forked: * shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-queues-forked.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / i915#95<https://gitlab.freedesktop.org/drm/intel/issues/95>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@gem_exec_whisper@basic-queues-forked.html> 1. igt@i915_pm_rc6_residency@rc6-fence: * shard-hsw: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@i915_pm_rc6_residency@rc6-fence.html> (i915#1519<https://gitlab.freedesktop.org/drm/intel/issues/1519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@i915_pm_rc6_residency@rc6-fence.html> 1. {igt@kms_async_flips@async-flip-with-page-flip-events}: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#2521<https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_async_flips@async-flip-with-page-flip-events.html> (i915#2521<https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_async_flips@async-flip-with-page-flip-events.html> 1. igt@kms_big_fb@x-tiled-64bpp-rotate-180: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> 1. igt@kms_cursor_crc@pipe-b-cursor-256x85-random: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> (i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> (i915#54<https://gitlab.freedesktop.org/drm/intel/issues/54>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> 1. igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: * shard-hsw: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> (i915#96<https://gitlab.freedesktop.org/drm/intel/issues/96>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> 1. igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1: * shard-hsw: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> +1 similar issue 1. igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> +4 similar issues 1. igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: * shard-hsw: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> (i915#2055<https://gitlab.freedesktop.org/drm/intel/issues/2055>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> 1. igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: * shard-tglb: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> +2 similar issues * shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> 1. igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: * shard-iclb: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> 1. igt@kms_hdmi_inject@inject-audio: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html> (i915#433<https://gitlab.freedesktop.org/drm/intel/issues/433>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html> 1. igt@kms_psr@psr2_primary_page_flip: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html> +2 similar issues 1. igt@kms_universal_plane@universal-plane-pipe-c-functional: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> (i915#331<https://gitlab.freedesktop.org/drm/intel/issues/331>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> * shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> (i915#331<https://gitlab.freedesktop.org/drm/intel/issues/331>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> (i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635> / i915#331<https://gitlab.freedesktop.org/drm/intel/issues/331>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> 1. igt@sysfs_heartbeat_interval@mixed@vcs0: * shard-kbl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@sysfs_heartbeat_interval@mixed@vcs0.html> (i915#1731<https://gitlab.freedesktop.org/drm/intel/issues/1731>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@sysfs_heartbeat_interval@mixed@vcs0.html> Warnings 1. igt@gem_exec_reloc@basic-many-active@vcs1: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@gem_exec_reloc@basic-many-active@vcs1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@gem_exec_reloc@basic-many-active@vcs1.html> (i915#2389<https://gitlab.freedesktop.org/drm/intel/issues/2389>) +2 similar issues 1. igt@i915_pm_dc@dc3co-vpb-simulation: * shard-tglb: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#1904<https://gitlab.freedesktop.org/drm/intel/issues/1904>) 1. igt@i915_suspend@forcewake: * shard-tglb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb6/igt@i915_suspend@forcewake.html> (i915#1436<https://gitlab.freedesktop.org/drm/intel/issues/1436> / i915#1602<https://gitlab.freedesktop.org/drm/intel/issues/1602> / i915#1887<https://gitlab.freedesktop.org/drm/intel/issues/1887> / i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411> / i915#456<https://gitlab.freedesktop.org/drm/intel/issues/456>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_suspend@forcewake.html> (i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411>) 1. igt@kms_content_protection@atomic-dpms: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@atomic-dpms.html> (fdo#110321<https://bugs.freedesktop.org/show_bug.cgi?id=110321> / fdo#110336<https://bugs.freedesktop.org/show_bug.cgi?id=110336> / i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl7/igt@kms_content_protection@atomic-dpms.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319> / i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) 1. igt@kms_content_protection@legacy: * shard-apl: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@legacy.html> (i915#1319<https://gitlab.freedesktop.org/drm/intel/issues/1319> / i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_content_protection@legacy.html> (fdo#110321<https://bugs.freedesktop.org/show_bug.cgi?id=110321> / fdo#110336<https://bugs.freedesktop.org/show_bug.cgi?id=110336> / i915#1635<https://gitlab.freedesktop.org/drm/intel/issues/1635>) 1. igt@kms_dp_dsc@basic-dsc-enable-edp: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-edp.html> (fdo#109349<https://bugs.freedesktop.org/show_bug.cgi?id=109349>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html> (i915#1226<https://gitlab.freedesktop.org/drm/intel/issues/1226>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Participating hosts (11 -> 8) Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 Build changes 1. CI: CI-20190529 -> None 2. IGT: IGT_5802 -> IGTPW_5041 3. Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_9106: 7d08cf1b378a1481fcbe16ac801d5408651a25c0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5041: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html IGT_5802: 0e4fbc60ca5ad6585e642d2ddf8313f3c738426e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #1.2: Type: text/html, Size: 59004 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] 15+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) 2020-11-18 16:36 ` Vudum, Lakshminarayana @ 2020-11-19 6:18 ` Karthik B S 2020-11-19 8:39 ` Petri Latvala 0 siblings, 1 reply; 15+ messages in thread From: Karthik B S @ 2020-11-19 6:18 UTC (permalink / raw) To: Vudum, Lakshminarayana, igt-dev@lists.freedesktop.org [-- Attachment #1.1: Type: text/plain, Size: 33028 bytes --] On 11/18/2020 10:06 PM, Vudum, Lakshminarayana wrote: Hi Lakshmi, Sure, Thank you. Please let me know if something needs to be done from my side. Thanks and Regards, Karthik.B.S > Project List - Patchwork > > @Karthik B S <mailto:karthik.b.s@intel.com> I am checking with CI > team. Once the broken links are working, I will file the issues. > > Thanks, > > Lakshmi. > > *From:* Karthik B S <karthik.b.s@intel.com> > *Sent:* Tuesday, November 17, 2020 7:50 PM > *To:* Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>; > igt-dev@lists.freedesktop.org > *Subject:* Re: ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test > to validate big joiner (rev4) > > On 11/17/2020 10:41 PM, Vudum, Lakshminarayana wrote: > > @Karthik B S <mailto:karthik.b.s@intel.com> Any reason why I am > unable to load the regression failures? > > No, I'm not aware of the reason here. > > Any steps that can/should be taken from my side for this? > > Thanks, > Karthik.B.S > > *From:* Karthik B S <karthik.b.s@intel.com> > <mailto:karthik.b.s@intel.com> > *Sent:* Tuesday, November 17, 2020 2:46 AM > *To:* igt-dev@lists.freedesktop.org > <mailto:igt-dev@lists.freedesktop.org>; Vudum, Lakshminarayana > <lakshminarayana.vudum@intel.com> > <mailto:lakshminarayana.vudum@intel.com> > *Subject:* Re: ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add > test to validate big joiner (rev4) > > Hi Lakshmi, > > This looks like a false negative. > > As the patch is now rb'ed, could you please trigger a rerun? > > So that I can get this merged once the CI is green. > > Thanks, > > Karthik.B.S > > On 10/7/2020 3:06 PM, Patchwork wrote: > > *Patch Details* > > *Series:* > > > > tests/kms_big_joiner: Add test to validate big joiner (rev4) > > *URL:* > > > > https://patchwork.freedesktop.org/series/78769/ > <https://patchwork.freedesktop.org/series/78769/> > > *State:* > > > > failure > > *Details:* > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html> > > > CI Bug Log - changes from CI_DRM_9106_full -> IGTPW_5041_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_5041_full absolutely > need to be > verified manually. > > If you think the reported changes have nothing to do with the > changes > introduced in IGTPW_5041_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_5041/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html> > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_5041_full: > > > IGT changes > > > Possible regressions > > 1. igt@gem_blits@basic: > > 1. shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@gem_blits@basic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@gem_blits@basic.html> > +3 similar issues > 2. shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb7/igt@gem_blits@basic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_blits@basic.html> > +1 similar issue > 3. shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@gem_blits@basic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl1/igt@gem_blits@basic.html> > +2 similar issues > > 2. igt@gem_ctx_engines@invalid-engines: > > 1. shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@gem_ctx_engines@invalid-engines.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb3/igt@gem_ctx_engines@invalid-engines.html> > +2 similar issues > 2. shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk6/igt@gem_ctx_engines@invalid-engines.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@gem_ctx_engines@invalid-engines.html> > +2 similar issues > 3. shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_ctx_engines@invalid-engines.html> > > 3. igt@gem_ctx_param@root-set-no-zeromap-enabled: > > 1. shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> > +2 similar issues > > 4. {igt@kms_big_joiner@basic} (NEW): > > 1. shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_big_joiner@basic.html> > +1 similar issue > 2. shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_big_joiner@basic.html> > +1 similar issue > > 5. igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: > > 1. shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> > > > Suppressed > > The following results come from untrusted machines, tests, or > statuses. > They do not affect the overall result. > > 1. {igt@kms_async_flips@alternate-sync-async-flip}: > > 1. shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> > > > New tests > > New tests have been introduced between CI_DRM_9106_full and > IGTPW_5041_full: > > > New IGT tests (2) > > 1. igt@kms_big_joiner@basic: > > 1. Statuses : 7 skip(s) > 2. Exec time: [0.0] s > > 2. igt@kms_big_joiner@invalid-modeset: > > 1. Statuses : 7 skip(s) > 2. Exec time: [0.0] s > > > Known issues > > Here are the changes found in IGTPW_5041_full that come from > known issues: > > > IGT changes > > > Issues hit > > 1. igt@gem_ctx_engines@invalid-engines: > > 1. shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > +2 similar issues > > 2. igt@gem_exec_whisper@basic-contexts-forked-all: > > 1. shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-contexts-forked-all.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@gem_exec_whisper@basic-contexts-forked-all.html> > (i915#118 > <https://gitlab.freedesktop.org/drm/intel/issues/118> > / i915#95 > <https://gitlab.freedesktop.org/drm/intel/issues/95>) > +1 similar issue > > 3. igt@gem_huc_copy@huc-copy: > > 1. shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb8/igt@gem_huc_copy@huc-copy.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb6/igt@gem_huc_copy@huc-copy.html> > (i915#2190 > <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > > 4. igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding: > > 1. shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> > (i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > +1 similar issue > > 5. igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque: > > 1. shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > (i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > 2. shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > / i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > +1 similar issue > > 6. igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: > > 1. shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> > (fdo#109271 > <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > > 7. igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: > > 1. shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> > (i915#2370 > <https://gitlab.freedesktop.org/drm/intel/issues/2370>) > > 8. igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: > > 1. shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > (i915#79 > <https://gitlab.freedesktop.org/drm/intel/issues/79>) > > 9. igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2: > > 1. shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > 10. igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: > > 1. shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > / i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > 11. igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: > > 1. shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > +3 similar issues > > 12. igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: > > 1. shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > (i915#180 > <https://gitlab.freedesktop.org/drm/intel/issues/180>) > +5 similar issues > > 13. igt@kms_psr2_su@frontbuffer: > > 1. shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb5/igt@kms_psr2_su@frontbuffer.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_psr2_su@frontbuffer.html> > (i915#1911 > <https://gitlab.freedesktop.org/drm/intel/issues/1911>) > > 14. igt@kms_psr@psr2_cursor_render: > > 1. shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@kms_psr@psr2_cursor_render.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb4/igt@kms_psr@psr2_cursor_render.html> > (fdo#109441 > <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > > 15. igt@kms_universal_plane@universal-plane-gen9-features-pipe-a: > > 1. shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl2/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > > Possible fixes > > 1. igt@gem_exec_reloc@basic-many-active@rcs0: > > 1. shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@gem_exec_reloc@basic-many-active@rcs0.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@gem_exec_reloc@basic-many-active@rcs0.html> > > 2. igt@gem_exec_whisper@basic-queues-forked: > > 1. shard-glk: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-queues-forked.html> > (i915#118 > <https://gitlab.freedesktop.org/drm/intel/issues/118> > / i915#95 > <https://gitlab.freedesktop.org/drm/intel/issues/95>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@gem_exec_whisper@basic-queues-forked.html> > > 3. igt@i915_pm_rc6_residency@rc6-fence: > > 1. shard-hsw: WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@i915_pm_rc6_residency@rc6-fence.html> > (i915#1519 > <https://gitlab.freedesktop.org/drm/intel/issues/1519>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@i915_pm_rc6_residency@rc6-fence.html> > > 4. {igt@kms_async_flips@async-flip-with-page-flip-events}: > > 1. shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > / i915#2521 > <https://gitlab.freedesktop.org/drm/intel/issues/2521>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> > 2. shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_async_flips@async-flip-with-page-flip-events.html> > (i915#2521 > <https://gitlab.freedesktop.org/drm/intel/issues/2521>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_async_flips@async-flip-with-page-flip-events.html> > > 5. igt@kms_big_fb@x-tiled-64bpp-rotate-180: > > 1. shard-apl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > / i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> > > 6. igt@kms_cursor_crc@pipe-b-cursor-256x85-random: > > 1. shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > (i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > 2. shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > / i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > 3. shard-kbl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > (i915#54 > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > 7. igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: > > 1. shard-hsw: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> > (i915#96 > <https://gitlab.freedesktop.org/drm/intel/issues/96>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> > > 8. igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1: > > 1. shard-hsw: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> > +1 similar issue > > 9. igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: > > 1. shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > (i915#180 > <https://gitlab.freedesktop.org/drm/intel/issues/180>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > +4 similar issues > > 10. igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: > > 1. shard-hsw: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > (i915#2055 > <https://gitlab.freedesktop.org/drm/intel/issues/2055>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > > 11. igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: > > 1. shard-tglb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > +2 similar issues > 2. shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > > 12. igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: > > 1. shard-iclb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> > (i915#1982 > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> > > 13. igt@kms_hdmi_inject@inject-audio: > > 1. shard-tglb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html> > (i915#433 > <https://gitlab.freedesktop.org/drm/intel/issues/433>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html> > > 14. igt@kms_psr@psr2_primary_page_flip: > > 1. shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html> > (fdo#109441 > <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html> > +2 similar issues > > 15. igt@kms_universal_plane@universal-plane-pipe-c-functional: > > 1. shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > (i915#331 > <https://gitlab.freedesktop.org/drm/intel/issues/331>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > 2. shard-kbl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > (i915#331 > <https://gitlab.freedesktop.org/drm/intel/issues/331>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > 3. shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > (i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > / i915#331 > <https://gitlab.freedesktop.org/drm/intel/issues/331>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > 16. igt@sysfs_heartbeat_interval@mixed@vcs0: > > 1. shard-kbl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@sysfs_heartbeat_interval@mixed@vcs0.html> > (i915#1731 > <https://gitlab.freedesktop.org/drm/intel/issues/1731>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@sysfs_heartbeat_interval@mixed@vcs0.html> > > > Warnings > > 1. igt@gem_exec_reloc@basic-many-active@vcs1: > > 1. shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@gem_exec_reloc@basic-many-active@vcs1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@gem_exec_reloc@basic-many-active@vcs1.html> > (i915#2389 > <https://gitlab.freedesktop.org/drm/intel/issues/2389>) > +2 similar issues > > 2. igt@i915_pm_dc@dc3co-vpb-simulation: > > 1. shard-tglb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> > (i915#2411 > <https://gitlab.freedesktop.org/drm/intel/issues/2411>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_pm_dc@dc3co-vpb-simulation.html> > (i915#1904 > <https://gitlab.freedesktop.org/drm/intel/issues/1904>) > > 3. igt@i915_suspend@forcewake: > > 1. shard-tglb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb6/igt@i915_suspend@forcewake.html> > (i915#1436 > <https://gitlab.freedesktop.org/drm/intel/issues/1436> > / i915#1602 > <https://gitlab.freedesktop.org/drm/intel/issues/1602> > / i915#1887 > <https://gitlab.freedesktop.org/drm/intel/issues/1887> > / i915#2411 > <https://gitlab.freedesktop.org/drm/intel/issues/2411> > / i915#456 > <https://gitlab.freedesktop.org/drm/intel/issues/456>) > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_suspend@forcewake.html> > (i915#2411 > <https://gitlab.freedesktop.org/drm/intel/issues/2411>) > > 4. igt@kms_content_protection@atomic-dpms: > > 1. shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@atomic-dpms.html> > (fdo#110321 > <https://bugs.freedesktop.org/show_bug.cgi?id=110321> > / fdo#110336 > <https://bugs.freedesktop.org/show_bug.cgi?id=110336> > / i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl7/igt@kms_content_protection@atomic-dpms.html> > (i915#1319 > <https://gitlab.freedesktop.org/drm/intel/issues/1319> > / i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > > 5. igt@kms_content_protection@legacy: > > 1. shard-apl: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@legacy.html> > (i915#1319 > <https://gitlab.freedesktop.org/drm/intel/issues/1319> > / i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_content_protection@legacy.html> > (fdo#110321 > <https://bugs.freedesktop.org/show_bug.cgi?id=110321> > / fdo#110336 > <https://bugs.freedesktop.org/show_bug.cgi?id=110336> > / i915#1635 > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > > 6. igt@kms_dp_dsc@basic-dsc-enable-edp: > > 1. shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-edp.html> > (fdo#109349 > <https://bugs.freedesktop.org/show_bug.cgi?id=109349>) > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html> > (i915#1226 > <https://gitlab.freedesktop.org/drm/intel/issues/1226>) > > {name}: This element is suppressed. This means it is ignored > when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Participating hosts (11 -> 8) > > Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 > > > Build changes > > 1. CI: CI-20190529 -> None > 2. IGT: IGT_5802 -> IGTPW_5041 > 3. Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_9106: 7d08cf1b378a1481fcbe16ac801d5408651a25c0 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_5041: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html> > IGT_5802: 0e4fbc60ca5ad6585e642d2ddf8313f3c738426e @ > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit > [-- Attachment #1.2: Type: text/html, Size: 76940 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] 15+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) 2020-11-19 6:18 ` Karthik B S @ 2020-11-19 8:39 ` Petri Latvala 2020-11-20 4:28 ` Karthik B S 0 siblings, 1 reply; 15+ messages in thread From: Petri Latvala @ 2020-11-19 8:39 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev@lists.freedesktop.org, Vudum, Lakshminarayana Those results are too old to still exist on any server anywhere, they're from last month. I queued this series for a retest for more fresh results. -- Petri Latvala On Thu, Nov 19, 2020 at 11:48:12AM +0530, Karthik B S wrote: > On 11/18/2020 10:06 PM, Vudum, Lakshminarayana wrote: > Hi Lakshmi, > > Sure, Thank you. > Please let me know if something needs to be done from my side. > > Thanks and Regards, > Karthik.B.S > > Project List - Patchwork > > > > @Karthik B S <mailto:karthik.b.s@intel.com> I am checking with CI team. > > Once the broken links are working, I will file the issues. > > > > Thanks, > > > > Lakshmi. > > > > *From:* Karthik B S <karthik.b.s@intel.com> > > *Sent:* Tuesday, November 17, 2020 7:50 PM > > *To:* Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>; > > igt-dev@lists.freedesktop.org > > *Subject:* Re: ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test > > to validate big joiner (rev4) > > > > On 11/17/2020 10:41 PM, Vudum, Lakshminarayana wrote: > > > > @Karthik B S <mailto:karthik.b.s@intel.com> Any reason why I am > > unable to load the regression failures? > > > > No, I'm not aware of the reason here. > > > > Any steps that can/should be taken from my side for this? > > > > Thanks, > > Karthik.B.S > > > > *From:* Karthik B S <karthik.b.s@intel.com> > > <mailto:karthik.b.s@intel.com> > > *Sent:* Tuesday, November 17, 2020 2:46 AM > > *To:* igt-dev@lists.freedesktop.org > > <mailto:igt-dev@lists.freedesktop.org>; Vudum, Lakshminarayana > > <lakshminarayana.vudum@intel.com> > > <mailto:lakshminarayana.vudum@intel.com> > > *Subject:* Re: ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add > > test to validate big joiner (rev4) > > > > Hi Lakshmi, > > > > This looks like a false negative. > > > > As the patch is now rb'ed, could you please trigger a rerun? > > > > So that I can get this merged once the CI is green. > > > > Thanks, > > > > Karthik.B.S > > > > On 10/7/2020 3:06 PM, Patchwork wrote: > > > > *Patch Details* > > > > *Series:* > > > > > > > > tests/kms_big_joiner: Add test to validate big joiner (rev4) > > > > *URL:* > > > > > > > > https://patchwork.freedesktop.org/series/78769/ > > <https://patchwork.freedesktop.org/series/78769/> > > > > *State:* > > > > > > > > failure > > > > *Details:* > > > > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html> > > > > > > CI Bug Log - changes from CI_DRM_9106_full -> IGTPW_5041_full > > > > > > Summary > > > > *FAILURE* > > > > Serious unknown changes coming with IGTPW_5041_full absolutely > > need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the > > changes > > introduced in IGTPW_5041_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_5041/index.html > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html> > > > > > > Possible new issues > > > > Here are the unknown changes that may have been introduced in > > IGTPW_5041_full: > > > > > > IGT changes > > > > > > Possible regressions > > > > 1. igt@gem_blits@basic: > > > > 1. shard-hsw: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@gem_blits@basic.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@gem_blits@basic.html> > > +3 similar issues > > 2. shard-tglb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb7/igt@gem_blits@basic.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_blits@basic.html> > > +1 similar issue > > 3. shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@gem_blits@basic.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl1/igt@gem_blits@basic.html> > > +2 similar issues > > > > 2. igt@gem_ctx_engines@invalid-engines: > > > > 1. shard-iclb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@gem_ctx_engines@invalid-engines.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb3/igt@gem_ctx_engines@invalid-engines.html> > > +2 similar issues > > 2. shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk6/igt@gem_ctx_engines@invalid-engines.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@gem_ctx_engines@invalid-engines.html> > > +2 similar issues > > 3. shard-tglb: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@gem_ctx_engines@invalid-engines.html> > > > > 3. igt@gem_ctx_param@root-set-no-zeromap-enabled: > > > > 1. shard-snb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb6/igt@gem_ctx_param@root-set-no-zeromap-enabled.html> > > +2 similar issues > > > > 4. {igt@kms_big_joiner@basic} (NEW): > > > > 1. shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_big_joiner@basic.html> > > +1 similar issue > > 2. shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_big_joiner@basic.html> > > +1 similar issue > > > > 5. igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: > > > > 1. shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> > > -> INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> > > > > > > Suppressed > > > > The following results come from untrusted machines, tests, or > > statuses. > > They do not affect the overall result. > > > > 1. {igt@kms_async_flips@alternate-sync-async-flip}: > > > > 1. shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_async_flips@alternate-sync-async-flip.html> > > > > > > New tests > > > > New tests have been introduced between CI_DRM_9106_full and > > IGTPW_5041_full: > > > > > > New IGT tests (2) > > > > 1. igt@kms_big_joiner@basic: > > > > 1. Statuses : 7 skip(s) > > 2. Exec time: [0.0] s > > > > 2. igt@kms_big_joiner@invalid-modeset: > > > > 1. Statuses : 7 skip(s) > > 2. Exec time: [0.0] s > > > > > > Known issues > > > > Here are the changes found in IGTPW_5041_full that come from > > known issues: > > > > > > IGT changes > > > > > > Issues hit > > > > 1. igt@gem_ctx_engines@invalid-engines: > > > > 1. shard-apl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl4/igt@gem_ctx_engines@invalid-engines.html> > > (i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > > +2 similar issues > > > > 2. igt@gem_exec_whisper@basic-contexts-forked-all: > > > > 1. shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-contexts-forked-all.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@gem_exec_whisper@basic-contexts-forked-all.html> > > (i915#118 > > <https://gitlab.freedesktop.org/drm/intel/issues/118> > > / i915#95 > > <https://gitlab.freedesktop.org/drm/intel/issues/95>) > > +1 similar issue > > > > 3. igt@gem_huc_copy@huc-copy: > > > > 1. shard-tglb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb8/igt@gem_huc_copy@huc-copy.html> > > -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb6/igt@gem_huc_copy@huc-copy.html> > > (i915#2190 > > <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > > > > 4. igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding: > > > > 1. shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html> > > (i915#54 > > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > > +1 similar issue > > > > 5. igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque: > > > > 1. shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk5/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > > (i915#54 > > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > > 2. shard-apl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-alpha-opaque.html> > > (i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > > / i915#54 > > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > > +1 similar issue > > > > 6. igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: > > > > 1. shard-snb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> > > -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-snb2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> > > (fdo#109271 > > <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > > > > 7. igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: > > > > 1. shard-hsw: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> > > (i915#2370 > > <https://gitlab.freedesktop.org/drm/intel/issues/2370>) > > > > 8. igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: > > > > 1. shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > > (i915#79 > > <https://gitlab.freedesktop.org/drm/intel/issues/79>) > > > > 9. igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2: > > > > 1. shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk9/igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2.html> > > (i915#1982 > > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > > > 10. igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: > > > > 1. shard-apl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> > > (i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > > / i915#1982 > > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > > > 11. igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: > > > > 1. shard-tglb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> > > (i915#1982 > > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > +3 similar issues > > > > 12. igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: > > > > 1. shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > > (i915#180 > > <https://gitlab.freedesktop.org/drm/intel/issues/180>) > > +5 similar issues > > > > 13. igt@kms_psr2_su@frontbuffer: > > > > 1. shard-tglb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb5/igt@kms_psr2_su@frontbuffer.html> > > -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb1/igt@kms_psr2_su@frontbuffer.html> > > (i915#1911 > > <https://gitlab.freedesktop.org/drm/intel/issues/1911>) > > > > 14. igt@kms_psr@psr2_cursor_render: > > > > 1. shard-iclb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb2/igt@kms_psr@psr2_cursor_render.html> > > -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb4/igt@kms_psr@psr2_cursor_render.html> > > (fdo#109441 > > <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > > > > 15. igt@kms_universal_plane@universal-plane-gen9-features-pipe-a: > > > > 1. shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl2/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html> > > (i915#1982 > > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > > > > > Possible fixes > > > > 1. igt@gem_exec_reloc@basic-many-active@rcs0: > > > > 1. shard-apl: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@gem_exec_reloc@basic-many-active@rcs0.html> > > (i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@gem_exec_reloc@basic-many-active@rcs0.html> > > > > 2. igt@gem_exec_whisper@basic-queues-forked: > > > > 1. shard-glk: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk2/igt@gem_exec_whisper@basic-queues-forked.html> > > (i915#118 > > <https://gitlab.freedesktop.org/drm/intel/issues/118> > > / i915#95 > > <https://gitlab.freedesktop.org/drm/intel/issues/95>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@gem_exec_whisper@basic-queues-forked.html> > > > > 3. igt@i915_pm_rc6_residency@rc6-fence: > > > > 1. shard-hsw: WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@i915_pm_rc6_residency@rc6-fence.html> > > (i915#1519 > > <https://gitlab.freedesktop.org/drm/intel/issues/1519>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw4/igt@i915_pm_rc6_residency@rc6-fence.html> > > > > 4. {igt@kms_async_flips@async-flip-with-page-flip-events}: > > > > 1. shard-apl: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> > > (i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > > / i915#2521 > > <https://gitlab.freedesktop.org/drm/intel/issues/2521>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl3/igt@kms_async_flips@async-flip-with-page-flip-events.html> > > 2. shard-tglb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@kms_async_flips@async-flip-with-page-flip-events.html> > > (i915#2521 > > <https://gitlab.freedesktop.org/drm/intel/issues/2521>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@kms_async_flips@async-flip-with-page-flip-events.html> > > > > 5. igt@kms_big_fb@x-tiled-64bpp-rotate-180: > > > > 1. shard-apl: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> > > (i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > > / i915#1982 > > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html> > > > > 6. igt@kms_cursor_crc@pipe-b-cursor-256x85-random: > > > > 1. shard-glk: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > (i915#54 > > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > 2. shard-apl: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > (i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > > / i915#54 > > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > 3. shard-kbl: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > (i915#54 > > <https://gitlab.freedesktop.org/drm/intel/issues/54>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html> > > > > 7. igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: > > > > 1. shard-hsw: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> > > (i915#96 > > <https://gitlab.freedesktop.org/drm/intel/issues/96>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html> > > > > 8. igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1: > > > > 1. shard-hsw: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> > > (i915#1982 > > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html> > > +1 similar issue > > > > 9. igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: > > > > 1. shard-kbl: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > > (i915#180 > > <https://gitlab.freedesktop.org/drm/intel/issues/180>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > > +4 similar issues > > > > 10. igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: > > > > 1. shard-hsw: INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-hsw2/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > > (i915#2055 > > <https://gitlab.freedesktop.org/drm/intel/issues/2055>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > > > > 11. igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: > > > > 1. shard-tglb: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > > (i915#1982 > > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > > +2 similar issues > > 2. shard-kbl: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > > (i915#1982 > > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> > > > > 12. igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: > > > > 1. shard-iclb: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> > > (i915#1982 > > <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html> > > > > 13. igt@kms_hdmi_inject@inject-audio: > > > > 1. shard-tglb: SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html> > > (i915#433 > > <https://gitlab.freedesktop.org/drm/intel/issues/433>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html> > > > > 14. igt@kms_psr@psr2_primary_page_flip: > > > > 1. shard-iclb: SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html> > > (fdo#109441 > > <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html> > > +2 similar issues > > > > 15. igt@kms_universal_plane@universal-plane-pipe-c-functional: > > > > 1. shard-glk: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > (i915#331 > > <https://gitlab.freedesktop.org/drm/intel/issues/331>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-glk2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > 2. shard-kbl: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > (i915#331 > > <https://gitlab.freedesktop.org/drm/intel/issues/331>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > 3. shard-apl: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > (i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635> > > / i915#331 > > <https://gitlab.freedesktop.org/drm/intel/issues/331>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html> > > > > 16. igt@sysfs_heartbeat_interval@mixed@vcs0: > > > > 1. shard-kbl: INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-kbl4/igt@sysfs_heartbeat_interval@mixed@vcs0.html> > > (i915#1731 > > <https://gitlab.freedesktop.org/drm/intel/issues/1731>) > > -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-kbl7/igt@sysfs_heartbeat_interval@mixed@vcs0.html> > > > > > > Warnings > > > > 1. igt@gem_exec_reloc@basic-many-active@vcs1: > > > > 1. shard-tglb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb1/igt@gem_exec_reloc@basic-many-active@vcs1.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb2/igt@gem_exec_reloc@basic-many-active@vcs1.html> > > (i915#2389 > > <https://gitlab.freedesktop.org/drm/intel/issues/2389>) > > +2 similar issues > > > > 2. igt@i915_pm_dc@dc3co-vpb-simulation: > > > > 1. shard-tglb: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> > > (i915#2411 > > <https://gitlab.freedesktop.org/drm/intel/issues/2411>) > > -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_pm_dc@dc3co-vpb-simulation.html> > > (i915#1904 > > <https://gitlab.freedesktop.org/drm/intel/issues/1904>) > > > > 3. igt@i915_suspend@forcewake: > > > > 1. shard-tglb: INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-tglb6/igt@i915_suspend@forcewake.html> > > (i915#1436 > > <https://gitlab.freedesktop.org/drm/intel/issues/1436> > > / i915#1602 > > <https://gitlab.freedesktop.org/drm/intel/issues/1602> > > / i915#1887 > > <https://gitlab.freedesktop.org/drm/intel/issues/1887> > > / i915#2411 > > <https://gitlab.freedesktop.org/drm/intel/issues/2411> > > / i915#456 > > <https://gitlab.freedesktop.org/drm/intel/issues/456>) > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-tglb5/igt@i915_suspend@forcewake.html> > > (i915#2411 > > <https://gitlab.freedesktop.org/drm/intel/issues/2411>) > > > > 4. igt@kms_content_protection@atomic-dpms: > > > > 1. shard-apl: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@atomic-dpms.html> > > (fdo#110321 > > <https://bugs.freedesktop.org/show_bug.cgi?id=110321> > > / fdo#110336 > > <https://bugs.freedesktop.org/show_bug.cgi?id=110336> > > / i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > > -> TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl7/igt@kms_content_protection@atomic-dpms.html> > > (i915#1319 > > <https://gitlab.freedesktop.org/drm/intel/issues/1319> > > / i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > > > > 5. igt@kms_content_protection@legacy: > > > > 1. shard-apl: TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-apl6/igt@kms_content_protection@legacy.html> > > (i915#1319 > > <https://gitlab.freedesktop.org/drm/intel/issues/1319> > > / i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-apl6/igt@kms_content_protection@legacy.html> > > (fdo#110321 > > <https://bugs.freedesktop.org/show_bug.cgi?id=110321> > > / fdo#110336 > > <https://bugs.freedesktop.org/show_bug.cgi?id=110336> > > / i915#1635 > > <https://gitlab.freedesktop.org/drm/intel/issues/1635>) > > > > 6. igt@kms_dp_dsc@basic-dsc-enable-edp: > > > > 1. shard-iclb: SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9106/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-edp.html> > > (fdo#109349 > > <https://bugs.freedesktop.org/show_bug.cgi?id=109349>) > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html> > > (i915#1226 > > <https://gitlab.freedesktop.org/drm/intel/issues/1226>) > > > > {name}: This element is suppressed. This means it is ignored > > when computing > > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > > > > Participating hosts (11 -> 8) > > > > Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 > > > > > > Build changes > > > > 1. CI: CI-20190529 -> None > > 2. IGT: IGT_5802 -> IGTPW_5041 > > 3. Piglit: piglit_4509 -> None > > > > CI-20190529: 20190529 > > CI_DRM_9106: 7d08cf1b378a1481fcbe16ac801d5408651a25c0 @ > > git://anongit.freedesktop.org/gfx-ci/linux > > IGTPW_5041: > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5041/index.html> > > IGT_5802: 0e4fbc60ca5ad6585e642d2ddf8313f3c738426e @ > > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > > git://anongit.freedesktop.org/piglit > > > > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_big_joiner: Add test to validate big joiner (rev4) 2020-11-19 8:39 ` Petri Latvala @ 2020-11-20 4:28 ` Karthik B S 0 siblings, 0 replies; 15+ messages in thread From: Karthik B S @ 2020-11-20 4:28 UTC (permalink / raw) To: Petri Latvala; +Cc: igt-dev@lists.freedesktop.org, Vudum, Lakshminarayana On 11/19/2020 2:09 PM, Petri Latvala wrote: > Those results are too old to still exist on any server anywhere, > they're from last month. I queued this series for a retest for more > fresh results. > > Thanks Petri. CI results are now green. I will get this merged. Thanks, Karthik.B.S _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner 2020-10-07 6:09 [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner Karthik B S 2020-10-07 7:02 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_big_joiner: Add test to validate big joiner (rev4) Patchwork 2020-10-07 9:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-11-17 6:21 ` Navare, Manasi 2020-11-17 10:49 ` Karthik B S 2020-11-19 10:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_big_joiner: Add test to validate big joiner (rev5) Patchwork 2020-11-19 14:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 1 reply; 15+ messages in thread From: Navare, Manasi @ 2020-11-17 6:21 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev On Wed, Oct 07, 2020 at 11:39:49AM +0530, Karthik B S wrote: > Added negative test to verify the different scenarios for big joiner. > In the test, modeset is done on Pipe A for a big joiner mode and > a second modeset is attempted on Pipe B which is expected to fail. > Same functionality is validated for other pipes as well. > > Secondly, the reverse is tested where a modeset is done on Pipe B > and then a second big joiner modeset is attempted on Pipe A which is > expected to fail. Same functionality is validated for other pipes as well. > > v2: -Rename HDISPLAY_5K to MAX_HDISPLAY_PER_PIPE. (Manasi) > -Do not assume mode[0] will be the highest mode. > Loop through the mode list to find the 8k mode. (Manasi) > -Add a subtest for verifying basic 8k modeset on all pipes. (Manasi) > > v3: -Add break after big joiner output is found in basic subtest. (Manasi) > -Fix the clean up part in the invalid-modeset subtest. > > v4: -Add comments in the clean up part of invalid subtest as to why only > particular fb needs to be set to NULL. (Manasi) > > Signed-off-by: Karthik B S <karthik.b.s@intel.com> Reviewed-by: Manasi Navare <manasi.d.navare@intel.com> Manasi > --- > tests/Makefile.sources | 1 + > tests/kms_big_joiner.c | 262 +++++++++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 3 files changed, 264 insertions(+) > create mode 100644 tests/kms_big_joiner.c > > diff --git a/tests/Makefile.sources b/tests/Makefile.sources > index f32ea9cf..f59ac150 100644 > --- a/tests/Makefile.sources > +++ b/tests/Makefile.sources > @@ -38,6 +38,7 @@ TESTS_progs = \ > kms_atomic_transition \ > kms_available_modes_crc \ > kms_big_fb \ > + kms_big_joiner \ > kms_busy \ > kms_ccs \ > kms_concurrent \ > diff --git a/tests/kms_big_joiner.c b/tests/kms_big_joiner.c > new file mode 100644 > index 00000000..31d2e048 > --- /dev/null > +++ b/tests/kms_big_joiner.c > @@ -0,0 +1,262 @@ > +/* > + * Copyright © 2020 Intel Corporation > + * > + * Permission is hereby granted, free of charge, to any person obtaining a > + * copy of this software and associated documentation files (the "Software"), > + * to deal in the Software without restriction, including without limitation > + * the rights to use, copy, modify, merge, publish, distribute, sublicense, > + * and/or sell copies of the Software, and to permit persons to whom the > + * Software is furnished to do so, subject to the following conditions: > + * > + * The above copyright notice and this permission notice (including the next > + * paragraph) shall be included in all copies or substantial portions of the > + * Software. > + * > + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR > + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, > + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL > + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER > + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING > + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS > + * IN THE SOFTWARE. > + * > + * Author: > + * Karthik B S <karthik.b.s@intel.com> > + */ > + > +#include "igt.h" > + > +#define MAX_HDISPLAY_PER_PIPE 5120 > + > +IGT_TEST_DESCRIPTION("Test big joiner"); > + > +typedef struct { > + int drm_fd; > + igt_display_t display; > + struct igt_fb fb; > + int mode_number; > + int n_pipes; > + uint32_t big_joiner_output_id; > +} data_t; > + > +static void test_invalid_modeset(data_t *data) > +{ > + drmModeModeInfo *mode; > + igt_display_t *display = &data->display; > + igt_output_t *output, *big_joiner_output = NULL, *second_output = NULL; > + int width = 0, height = 0, i, ret; > + igt_pipe_t *pipe; > + igt_plane_t *plane; > + > + for_each_connected_output(display, output) { > + mode = &output->config.connector->modes[0]; > + > + if (data->big_joiner_output_id == output->id) { > + mode = &output->config.connector->modes[data->mode_number]; > + big_joiner_output = output; > + } else if (second_output == NULL) { > + second_output = output; > + } > + > + width = max(width, mode->hdisplay); > + height = max(height, mode->vdisplay); > + } > + > + igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, > + LOCAL_DRM_FORMAT_MOD_NONE, &data->fb); > + > + for_each_pipe(display, i) { > + if (i < (data->n_pipes - 1)) { > + igt_output_set_pipe(big_joiner_output, i); > + > + mode = &big_joiner_output->config.connector->modes[data->mode_number]; > + igt_output_override_mode(big_joiner_output, mode); > + > + pipe = &display->pipes[i]; > + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); > + > + igt_plane_set_fb(plane, &data->fb); > + igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay); > + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + igt_output_set_pipe(second_output, i + 1); > + > + mode = igt_output_get_mode(second_output); > + > + pipe = &display->pipes[i + 1]; > + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); > + > + igt_plane_set_fb(plane, &data->fb); > + igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay); > + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); > + > + /* This commit is expectd to fail as this pipe is being used for big joiner */ > + ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY | > + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > + igt_assert_lt(ret, 0); > + > + igt_output_set_pipe(big_joiner_output, PIPE_NONE); > + igt_output_set_pipe(second_output, PIPE_NONE); > + > + pipe = &display->pipes[i]; > + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); > + > + /* > + * Do not explicitly set the plane of the second output to NULL, > + * as it is the adjacent pipe to the big joiner output and > + * setting the big joiner plane to NULL will take care of this. > + */ > + igt_plane_set_fb(plane, NULL); > + igt_display_commit2(display, COMMIT_ATOMIC); > + igt_output_override_mode(big_joiner_output, NULL); > + } > + } > + > + for_each_pipe(display, i) { > + if (i < (data->n_pipes - 1)) { > + igt_output_set_pipe(second_output, i + 1); > + > + mode = igt_output_get_mode(second_output); > + > + pipe = &display->pipes[i + 1]; > + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); > + > + igt_plane_set_fb(plane, &data->fb); > + igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay); > + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + igt_output_set_pipe(big_joiner_output, i); > + > + mode = &big_joiner_output->config.connector->modes[data->mode_number]; > + igt_output_override_mode(big_joiner_output, mode); > + > + pipe = &display->pipes[i]; > + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); > + > + igt_plane_set_fb(plane, &data->fb); > + igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay); > + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); > + > + /* This commit is expected to fail as the adjacent pipe is already in use*/ > + ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY | > + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > + igt_assert_lt(ret, 0); > + > + igt_output_set_pipe(big_joiner_output, PIPE_NONE); > + igt_output_set_pipe(second_output, PIPE_NONE); > + igt_plane_set_fb(plane, NULL); > + > + pipe = &display->pipes[i + 1]; > + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); > + igt_plane_set_fb(plane, NULL); > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + igt_output_override_mode(big_joiner_output, NULL); > + } > + } > + > + igt_remove_fb(data->drm_fd, &data->fb); > +} > + > +static void test_basic_modeset(data_t *data) > +{ > + drmModeModeInfo *mode; > + igt_output_t *output, *big_joiner_output = NULL; > + igt_display_t *display = &data->display; > + int width = 0, height = 0, i; > + igt_pipe_t *pipe; > + igt_plane_t *plane; > + > + for_each_connected_output(display, output) { > + if (data->big_joiner_output_id == output->id) { > + mode = &output->config.connector->modes[data->mode_number]; > + big_joiner_output = output; > + width = mode->hdisplay; > + height = mode->vdisplay; > + break; > + } > + } > + > + igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, > + LOCAL_DRM_FORMAT_MOD_NONE, &data->fb); > + > + for_each_pipe(display, i) { > + if (i < (data->n_pipes - 1)) { > + igt_output_set_pipe(big_joiner_output, i); > + > + mode = &big_joiner_output->config.connector->modes[data->mode_number]; > + igt_output_override_mode(big_joiner_output, mode); > + > + pipe = &display->pipes[i]; > + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); > + > + igt_plane_set_fb(plane, &data->fb); > + igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay); > + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + igt_output_set_pipe(big_joiner_output, PIPE_NONE); > + igt_plane_set_fb(plane, NULL); > + igt_display_commit2(display, COMMIT_ATOMIC); > + } > + } > + > + igt_remove_fb(data->drm_fd, &data->fb); > +} > + > +igt_main > +{ > + data_t data; > + bool big_joiner_mode_found = false; > + igt_output_t *output; > + drmModeModeInfo *mode; > + int valid_output = 0, i; > + > + igt_fixture { > + data.drm_fd = drm_open_driver_master(DRIVER_INTEL); > + kmstest_set_vt_graphics_mode(); > + > + igt_display_require(&data.display, data.drm_fd); > + > + for_each_connected_output(&data.display, output) { > + if (!big_joiner_mode_found) { > + for (i = 0; i < output->config.connector->count_modes; i++) { > + mode = &output->config.connector->modes[i]; > + if (mode->hdisplay > MAX_HDISPLAY_PER_PIPE) { > + big_joiner_mode_found = true; > + data.mode_number = i; > + data.big_joiner_output_id = output->id; > + break; > + } > + } > + } > + valid_output++; > + } > + > + data.n_pipes = 0; > + for_each_pipe(&data.display, i) > + data.n_pipes++; > + > + igt_require_f(big_joiner_mode_found, "No output with 5k+ mode found\n"); > + } > + > + igt_describe("Verify the basic modeset on big joiner mode on all pipes"); > + igt_subtest("basic") > + test_basic_modeset(&data); > + > + igt_describe("Verify if the modeset on the adjoining pipe is rejected " > + "when the pipe is active with a big joiner modeset"); > + igt_subtest("invalid-modeset") { > + igt_require_f(valid_output > 1, "No valid Second output found\n"); > + test_invalid_modeset(&data); > + } > + > + igt_fixture > + igt_display_fini(&data.display); > +} > diff --git a/tests/meson.build b/tests/meson.build > index 32f011e9..aea7d7f8 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -22,6 +22,7 @@ test_progs = [ > 'kms_atomic_transition', > 'kms_available_modes_crc', > 'kms_big_fb', > + 'kms_big_joiner' , > 'kms_busy', > 'kms_ccs', > 'kms_concurrent', > -- > 2.22.0 > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner 2020-11-17 6:21 ` [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner Navare, Manasi @ 2020-11-17 10:49 ` Karthik B S 0 siblings, 0 replies; 15+ messages in thread From: Karthik B S @ 2020-11-17 10:49 UTC (permalink / raw) To: Navare, Manasi; +Cc: igt-dev On 11/17/2020 11:51 AM, Navare, Manasi wrote: > On Wed, Oct 07, 2020 at 11:39:49AM +0530, Karthik B S wrote: >> Added negative test to verify the different scenarios for big joiner. >> In the test, modeset is done on Pipe A for a big joiner mode and >> a second modeset is attempted on Pipe B which is expected to fail. >> Same functionality is validated for other pipes as well. >> >> Secondly, the reverse is tested where a modeset is done on Pipe B >> and then a second big joiner modeset is attempted on Pipe A which is >> expected to fail. Same functionality is validated for other pipes as well. >> >> v2: -Rename HDISPLAY_5K to MAX_HDISPLAY_PER_PIPE. (Manasi) >> -Do not assume mode[0] will be the highest mode. >> Loop through the mode list to find the 8k mode. (Manasi) >> -Add a subtest for verifying basic 8k modeset on all pipes. (Manasi) >> >> v3: -Add break after big joiner output is found in basic subtest. (Manasi) >> -Fix the clean up part in the invalid-modeset subtest. >> >> v4: -Add comments in the clean up part of invalid subtest as to why only >> particular fb needs to be set to NULL. (Manasi) >> >> Signed-off-by: Karthik B S <karthik.b.s@intel.com> > Reviewed-by: Manasi Navare <manasi.d.navare@intel.com> > > Manasi Thank you for the rb. Thanks, Karthik.B.S > >> --- >> tests/Makefile.sources | 1 + >> tests/kms_big_joiner.c | 262 +++++++++++++++++++++++++++++++++++++++++ >> tests/meson.build | 1 + >> 3 files changed, 264 insertions(+) >> create mode 100644 tests/kms_big_joiner.c >> >> diff --git a/tests/Makefile.sources b/tests/Makefile.sources >> index f32ea9cf..f59ac150 100644 >> --- a/tests/Makefile.sources >> +++ b/tests/Makefile.sources >> @@ -38,6 +38,7 @@ TESTS_progs = \ >> kms_atomic_transition \ >> kms_available_modes_crc \ >> kms_big_fb \ >> + kms_big_joiner \ >> kms_busy \ >> kms_ccs \ >> kms_concurrent \ >> diff --git a/tests/kms_big_joiner.c b/tests/kms_big_joiner.c >> new file mode 100644 >> index 00000000..31d2e048 >> --- /dev/null >> +++ b/tests/kms_big_joiner.c >> @@ -0,0 +1,262 @@ >> +/* >> + * Copyright © 2020 Intel Corporation >> + * >> + * Permission is hereby granted, free of charge, to any person obtaining a >> + * copy of this software and associated documentation files (the "Software"), >> + * to deal in the Software without restriction, including without limitation >> + * the rights to use, copy, modify, merge, publish, distribute, sublicense, >> + * and/or sell copies of the Software, and to permit persons to whom the >> + * Software is furnished to do so, subject to the following conditions: >> + * >> + * The above copyright notice and this permission notice (including the next >> + * paragraph) shall be included in all copies or substantial portions of the >> + * Software. >> + * >> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR >> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, >> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL >> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER >> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING >> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS >> + * IN THE SOFTWARE. >> + * >> + * Author: >> + * Karthik B S <karthik.b.s@intel.com> >> + */ >> + >> +#include "igt.h" >> + >> +#define MAX_HDISPLAY_PER_PIPE 5120 >> + >> +IGT_TEST_DESCRIPTION("Test big joiner"); >> + >> +typedef struct { >> + int drm_fd; >> + igt_display_t display; >> + struct igt_fb fb; >> + int mode_number; >> + int n_pipes; >> + uint32_t big_joiner_output_id; >> +} data_t; >> + >> +static void test_invalid_modeset(data_t *data) >> +{ >> + drmModeModeInfo *mode; >> + igt_display_t *display = &data->display; >> + igt_output_t *output, *big_joiner_output = NULL, *second_output = NULL; >> + int width = 0, height = 0, i, ret; >> + igt_pipe_t *pipe; >> + igt_plane_t *plane; >> + >> + for_each_connected_output(display, output) { >> + mode = &output->config.connector->modes[0]; >> + >> + if (data->big_joiner_output_id == output->id) { >> + mode = &output->config.connector->modes[data->mode_number]; >> + big_joiner_output = output; >> + } else if (second_output == NULL) { >> + second_output = output; >> + } >> + >> + width = max(width, mode->hdisplay); >> + height = max(height, mode->vdisplay); >> + } >> + >> + igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, >> + LOCAL_DRM_FORMAT_MOD_NONE, &data->fb); >> + >> + for_each_pipe(display, i) { >> + if (i < (data->n_pipes - 1)) { >> + igt_output_set_pipe(big_joiner_output, i); >> + >> + mode = &big_joiner_output->config.connector->modes[data->mode_number]; >> + igt_output_override_mode(big_joiner_output, mode); >> + >> + pipe = &display->pipes[i]; >> + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); >> + >> + igt_plane_set_fb(plane, &data->fb); >> + igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay); >> + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); >> + >> + igt_display_commit2(display, COMMIT_ATOMIC); >> + >> + igt_output_set_pipe(second_output, i + 1); >> + >> + mode = igt_output_get_mode(second_output); >> + >> + pipe = &display->pipes[i + 1]; >> + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); >> + >> + igt_plane_set_fb(plane, &data->fb); >> + igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay); >> + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); >> + >> + /* This commit is expectd to fail as this pipe is being used for big joiner */ >> + ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY | >> + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); >> + igt_assert_lt(ret, 0); >> + >> + igt_output_set_pipe(big_joiner_output, PIPE_NONE); >> + igt_output_set_pipe(second_output, PIPE_NONE); >> + >> + pipe = &display->pipes[i]; >> + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); >> + >> + /* >> + * Do not explicitly set the plane of the second output to NULL, >> + * as it is the adjacent pipe to the big joiner output and >> + * setting the big joiner plane to NULL will take care of this. >> + */ >> + igt_plane_set_fb(plane, NULL); >> + igt_display_commit2(display, COMMIT_ATOMIC); >> + igt_output_override_mode(big_joiner_output, NULL); >> + } >> + } >> + >> + for_each_pipe(display, i) { >> + if (i < (data->n_pipes - 1)) { >> + igt_output_set_pipe(second_output, i + 1); >> + >> + mode = igt_output_get_mode(second_output); >> + >> + pipe = &display->pipes[i + 1]; >> + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); >> + >> + igt_plane_set_fb(plane, &data->fb); >> + igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay); >> + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); >> + >> + igt_display_commit2(display, COMMIT_ATOMIC); >> + >> + igt_output_set_pipe(big_joiner_output, i); >> + >> + mode = &big_joiner_output->config.connector->modes[data->mode_number]; >> + igt_output_override_mode(big_joiner_output, mode); >> + >> + pipe = &display->pipes[i]; >> + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); >> + >> + igt_plane_set_fb(plane, &data->fb); >> + igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay); >> + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); >> + >> + /* This commit is expected to fail as the adjacent pipe is already in use*/ >> + ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY | >> + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); >> + igt_assert_lt(ret, 0); >> + >> + igt_output_set_pipe(big_joiner_output, PIPE_NONE); >> + igt_output_set_pipe(second_output, PIPE_NONE); >> + igt_plane_set_fb(plane, NULL); >> + >> + pipe = &display->pipes[i + 1]; >> + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); >> + igt_plane_set_fb(plane, NULL); >> + >> + igt_display_commit2(display, COMMIT_ATOMIC); >> + >> + igt_output_override_mode(big_joiner_output, NULL); >> + } >> + } >> + >> + igt_remove_fb(data->drm_fd, &data->fb); >> +} >> + >> +static void test_basic_modeset(data_t *data) >> +{ >> + drmModeModeInfo *mode; >> + igt_output_t *output, *big_joiner_output = NULL; >> + igt_display_t *display = &data->display; >> + int width = 0, height = 0, i; >> + igt_pipe_t *pipe; >> + igt_plane_t *plane; >> + >> + for_each_connected_output(display, output) { >> + if (data->big_joiner_output_id == output->id) { >> + mode = &output->config.connector->modes[data->mode_number]; >> + big_joiner_output = output; >> + width = mode->hdisplay; >> + height = mode->vdisplay; >> + break; >> + } >> + } >> + >> + igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, >> + LOCAL_DRM_FORMAT_MOD_NONE, &data->fb); >> + >> + for_each_pipe(display, i) { >> + if (i < (data->n_pipes - 1)) { >> + igt_output_set_pipe(big_joiner_output, i); >> + >> + mode = &big_joiner_output->config.connector->modes[data->mode_number]; >> + igt_output_override_mode(big_joiner_output, mode); >> + >> + pipe = &display->pipes[i]; >> + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); >> + >> + igt_plane_set_fb(plane, &data->fb); >> + igt_fb_set_size(&data->fb, plane, mode->hdisplay, mode->vdisplay); >> + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); >> + >> + igt_display_commit2(display, COMMIT_ATOMIC); >> + >> + igt_output_set_pipe(big_joiner_output, PIPE_NONE); >> + igt_plane_set_fb(plane, NULL); >> + igt_display_commit2(display, COMMIT_ATOMIC); >> + } >> + } >> + >> + igt_remove_fb(data->drm_fd, &data->fb); >> +} >> + >> +igt_main >> +{ >> + data_t data; >> + bool big_joiner_mode_found = false; >> + igt_output_t *output; >> + drmModeModeInfo *mode; >> + int valid_output = 0, i; >> + >> + igt_fixture { >> + data.drm_fd = drm_open_driver_master(DRIVER_INTEL); >> + kmstest_set_vt_graphics_mode(); >> + >> + igt_display_require(&data.display, data.drm_fd); >> + >> + for_each_connected_output(&data.display, output) { >> + if (!big_joiner_mode_found) { >> + for (i = 0; i < output->config.connector->count_modes; i++) { >> + mode = &output->config.connector->modes[i]; >> + if (mode->hdisplay > MAX_HDISPLAY_PER_PIPE) { >> + big_joiner_mode_found = true; >> + data.mode_number = i; >> + data.big_joiner_output_id = output->id; >> + break; >> + } >> + } >> + } >> + valid_output++; >> + } >> + >> + data.n_pipes = 0; >> + for_each_pipe(&data.display, i) >> + data.n_pipes++; >> + >> + igt_require_f(big_joiner_mode_found, "No output with 5k+ mode found\n"); >> + } >> + >> + igt_describe("Verify the basic modeset on big joiner mode on all pipes"); >> + igt_subtest("basic") >> + test_basic_modeset(&data); >> + >> + igt_describe("Verify if the modeset on the adjoining pipe is rejected " >> + "when the pipe is active with a big joiner modeset"); >> + igt_subtest("invalid-modeset") { >> + igt_require_f(valid_output > 1, "No valid Second output found\n"); >> + test_invalid_modeset(&data); >> + } >> + >> + igt_fixture >> + igt_display_fini(&data.display); >> +} >> diff --git a/tests/meson.build b/tests/meson.build >> index 32f011e9..aea7d7f8 100644 >> --- a/tests/meson.build >> +++ b/tests/meson.build >> @@ -22,6 +22,7 @@ test_progs = [ >> 'kms_atomic_transition', >> 'kms_available_modes_crc', >> 'kms_big_fb', >> + 'kms_big_joiner' , >> 'kms_busy', >> 'kms_ccs', >> 'kms_concurrent', >> -- >> 2.22.0 >> _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_big_joiner: Add test to validate big joiner (rev5) 2020-10-07 6:09 [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner Karthik B S ` (2 preceding siblings ...) 2020-11-17 6:21 ` [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner Navare, Manasi @ 2020-11-19 10:16 ` Patchwork 2020-11-19 14:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2020-11-19 10:16 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 4519 bytes --] == Series Details == Series: tests/kms_big_joiner: Add test to validate big joiner (rev5) URL : https://patchwork.freedesktop.org/series/78769/ State : success == Summary == CI Bug Log - changes from CI_DRM_9359 -> IGTPW_5193 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/index.html Known issues ------------ Here are the changes found in IGTPW_5193 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-byt-j1900: [PASS][1] -> [DMESG-WARN][2] ([i915#1982]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-icl-u2: [PASS][3] -> [DMESG-WARN][4] ([i915#1982]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@vgem_basic@setversion: - fi-tgl-y: [PASS][5] -> [DMESG-WARN][6] ([i915#402]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/fi-tgl-y/igt@vgem_basic@setversion.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/fi-tgl-y/igt@vgem_basic@setversion.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-skl-lmem: [DMESG-WARN][7] ([i915#2605]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/fi-skl-lmem/igt@core_hotunplug@unbind-rebind.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/fi-skl-lmem/igt@core_hotunplug@unbind-rebind.html - fi-tgl-u2: [DMESG-WARN][9] ([i915#1982]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html * igt@gem_sync@basic-each: - fi-tgl-y: [DMESG-WARN][11] ([i915#402]) -> [PASS][12] +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/fi-tgl-y/igt@gem_sync@basic-each.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/fi-tgl-y/igt@gem_sync@basic-each.html * igt@i915_selftest@live@gt_pm: - {fi-kbl-7560u}: [DMESG-FAIL][13] ([i915#2524]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/fi-kbl-7560u/igt@i915_selftest@live@gt_pm.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/fi-kbl-7560u/igt@i915_selftest@live@gt_pm.html * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1: - fi-icl-u2: [DMESG-WARN][15] ([i915#1982]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/fi-icl-u2/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/fi-icl-u2/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2524]: https://gitlab.freedesktop.org/drm/intel/issues/2524 [i915#2605]: https://gitlab.freedesktop.org/drm/intel/issues/2605 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (40 -> 35) ------------------------------ Missing (5): fi-ilk-m540 fi-tgl-dsi fi-hsw-4200u fi-bsw-cyan fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5858 -> IGTPW_5193 CI-20190529: 20190529 CI_DRM_9359: 5529f30897761dc08c5cfcefc6d1659f9250d622 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5193: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/index.html IGT_5858: 300ee395f5c0ed53ab0757d9c5b311f9c1f641c8 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@kms_big_joiner@basic +igt@kms_big_joiner@invalid-modeset == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/index.html [-- Attachment #1.2: Type: text/html, Size: 5599 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] 15+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_big_joiner: Add test to validate big joiner (rev5) 2020-10-07 6:09 [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner Karthik B S ` (3 preceding siblings ...) 2020-11-19 10:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_big_joiner: Add test to validate big joiner (rev5) Patchwork @ 2020-11-19 14:27 ` Patchwork [not found] ` <d2626430918a4c0c98e98d7a9c067864@intel.com> 4 siblings, 1 reply; 15+ messages in thread From: Patchwork @ 2020-11-19 14:27 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 23595 bytes --] == Series Details == Series: tests/kms_big_joiner: Add test to validate big joiner (rev5) URL : https://patchwork.freedesktop.org/series/78769/ State : success == Summary == CI Bug Log - changes from CI_DRM_9359_full -> IGTPW_5193_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5193_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_big_joiner@basic} (NEW): - shard-tglb: NOTRUN -> [SKIP][1] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb8/igt@kms_big_joiner@basic.html - shard-iclb: NOTRUN -> [SKIP][2] +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-iclb5/igt@kms_big_joiner@basic.html New tests --------- New tests have been introduced between CI_DRM_9359_full and IGTPW_5193_full: ### New IGT tests (2) ### * igt@kms_big_joiner@basic: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_big_joiner@invalid-modeset: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_5193_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_reloc@basic-many-active@rcs0: - shard-glk: [PASS][3] -> [FAIL][4] ([i915#2389]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk3/igt@gem_exec_reloc@basic-many-active@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk3/igt@gem_exec_reloc@basic-many-active@rcs0.html * igt@gem_exec_whisper@basic-fds-priority-all: - shard-glk: [PASS][5] -> [DMESG-WARN][6] ([i915#118] / [i915#95]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk9/igt@gem_exec_whisper@basic-fds-priority-all.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk1/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [PASS][7] -> [SKIP][8] ([i915#2190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb8/igt@gem_huc_copy@huc-copy.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb6/igt@gem_huc_copy@huc-copy.html * igt@i915_pm_rpm@fences-dpms: - shard-kbl: [PASS][9] -> [SKIP][10] ([fdo#109271]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-kbl7/igt@i915_pm_rpm@fences-dpms.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-kbl2/igt@i915_pm_rpm@fences-dpms.html - shard-glk: [PASS][11] -> [SKIP][12] ([fdo#109271]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk8/igt@i915_pm_rpm@fences-dpms.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk1/igt@i915_pm_rpm@fences-dpms.html - shard-apl: [PASS][13] -> [SKIP][14] ([fdo#109271] / [i915#1635]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-apl3/igt@i915_pm_rpm@fences-dpms.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-apl8/igt@i915_pm_rpm@fences-dpms.html * igt@kms_cursor_crc@pipe-b-cursor-128x128-random: - shard-kbl: [PASS][15] -> [FAIL][16] ([i915#54]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html - shard-apl: [PASS][17] -> [FAIL][18] ([i915#1635] / [i915#54]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html - shard-glk: [PASS][19] -> [FAIL][20] ([i915#54]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk3/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk9/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html * igt@kms_cursor_edge_walk@pipe-a-64x64-top-edge: - shard-glk: [PASS][21] -> [DMESG-WARN][22] ([i915#1982]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk7/igt@kms_cursor_edge_walk@pipe-a-64x64-top-edge.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk9/igt@kms_cursor_edge_walk@pipe-a-64x64-top-edge.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-tglb: [PASS][23] -> [FAIL][24] ([i915#2346]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip@dpms-off-confusion@a-dp1: - shard-kbl: [PASS][25] -> [DMESG-WARN][26] ([i915#1982]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-kbl2/igt@kms_flip@dpms-off-confusion@a-dp1.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-kbl6/igt@kms_flip@dpms-off-confusion@a-dp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: - shard-glk: [PASS][27] -> [FAIL][28] ([i915#79]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglb: [PASS][29] -> [DMESG-WARN][30] ([i915#1982]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109642] / [fdo#111068]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-iclb2/igt@kms_psr2_su@frontbuffer.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-iclb3/igt@kms_psr2_su@frontbuffer.html * igt@kms_vblank@pipe-b-query-forked-busy: - shard-apl: [PASS][33] -> [DMESG-WARN][34] ([i915#1635] / [i915#1982]) +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-apl2/igt@kms_vblank@pipe-b-query-forked-busy.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-apl2/igt@kms_vblank@pipe-b-query-forked-busy.html * igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm: - shard-iclb: [PASS][35] -> [SKIP][36] ([fdo#109278]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-iclb8/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-iclb7/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html * igt@perf_pmu@module-unload: - shard-iclb: [PASS][37] -> [DMESG-WARN][38] ([i915#1982] / [i915#262]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-iclb7/igt@perf_pmu@module-unload.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-iclb3/igt@perf_pmu@module-unload.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: [INCOMPLETE][39] -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk2/igt@gem_ctx_isolation@preservation-s3@bcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk6/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: [DMESG-WARN][41] ([i915#2635]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk2/igt@gem_ctx_isolation@preservation-s3@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html - shard-apl: [INCOMPLETE][43] ([i915#1635] / [i915#2635]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-apl6/igt@gem_ctx_isolation@preservation-s3@rcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html - shard-kbl: [INCOMPLETE][45] ([i915#794]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@rcs0.html - shard-iclb: [INCOMPLETE][47] ([i915#1373]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-iclb2/igt@gem_ctx_isolation@preservation-s3@rcs0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-iclb1/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_exec_parallel@engines@contexts: - shard-iclb: [INCOMPLETE][49] -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-iclb3/igt@gem_exec_parallel@engines@contexts.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-iclb4/igt@gem_exec_parallel@engines@contexts.html * igt@gem_exec_whisper@basic-normal-all: - shard-glk: [DMESG-WARN][51] ([i915#118] / [i915#95]) -> [PASS][52] +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk6/igt@gem_exec_whisper@basic-normal-all.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk9/igt@gem_exec_whisper@basic-normal-all.html * igt@i915_pm_rpm@cursor: - shard-kbl: [SKIP][53] ([fdo#109271]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-kbl3/igt@i915_pm_rpm@cursor.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-kbl1/igt@i915_pm_rpm@cursor.html - shard-iclb: [SKIP][55] ([i915#579]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-iclb2/igt@i915_pm_rpm@cursor.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-iclb7/igt@i915_pm_rpm@cursor.html - shard-glk: [SKIP][57] ([fdo#109271]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk2/igt@i915_pm_rpm@cursor.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk2/igt@i915_pm_rpm@cursor.html - shard-apl: [SKIP][59] ([fdo#109271] / [i915#1635]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-apl6/igt@i915_pm_rpm@cursor.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-apl1/igt@i915_pm_rpm@cursor.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-apl: [DMESG-WARN][61] ([i915#1635] / [i915#1982]) -> [PASS][62] +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-apl2/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-apl7/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-kbl: [DMESG-WARN][63] ([i915#1982]) -> [PASS][64] +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-kbl6/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-kbl2/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding: - shard-kbl: [FAIL][65] ([i915#54]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html - shard-apl: [FAIL][67] ([i915#1635] / [i915#54]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html - shard-glk: [FAIL][69] ([i915#54]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk9/igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk4/igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [DMESG-WARN][71] ([i915#1982]) -> [PASS][72] +2 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy: - shard-tglb: [FAIL][73] ([i915#2346]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb1/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb1/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-tglb: [DMESG-WARN][75] ([i915#1982]) -> [PASS][76] +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-kbl: [DMESG-WARN][77] ([i915#180]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [SKIP][79] ([fdo#109441]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-iclb8/igt@kms_psr@psr2_no_drrs.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-iclb2/igt@kms_psr@psr2_no_drrs.html #### Warnings #### * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-tglb: [INCOMPLETE][81] -> [DMESG-WARN][82] ([i915#2411]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb3/igt@gem_ctx_isolation@preservation-s3@bcs0.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb3/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-tglb: [DMESG-WARN][83] ([i915#1436]) -> [DMESG-WARN][84] ([i915#2411]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb3/igt@gem_ctx_isolation@preservation-s3@rcs0.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb3/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@i915_pm_rpm@cursor: - shard-tglb: [SKIP][85] ([i915#579]) -> [DMESG-WARN][86] ([i915#2411]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb3/igt@i915_pm_rpm@cursor.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb1/igt@i915_pm_rpm@cursor.html * igt@i915_pm_rpm@fences-dpms: - shard-tglb: [DMESG-WARN][87] ([i915#2411]) -> [SKIP][88] ([i915#579]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb6/igt@i915_pm_rpm@fences-dpms.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb8/igt@i915_pm_rpm@fences-dpms.html * igt@kms_content_protection@atomic-dpms: - shard-apl: [TIMEOUT][89] ([i915#1319] / [i915#1635]) -> [FAIL][90] ([fdo#110321] / [fdo#110336] / [i915#1635]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-apl7/igt@kms_content_protection@atomic-dpms.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-apl6/igt@kms_content_protection@atomic-dpms.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: - shard-tglb: [INCOMPLETE][91] ([i915#1436] / [i915#1798] / [i915#1982] / [i915#456]) -> [DMESG-WARN][92] ([i915#2411]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html * igt@kms_plane_alpha_blend@pipe-a-alpha-basic: - shard-apl: [FAIL][93] ([fdo#108145] / [i915#1635] / [i915#265]) -> [DMESG-FAIL][94] ([fdo#108145] / [i915#1635] / [i915#1982]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-apl2/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-apl8/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html - shard-glk: [FAIL][95] ([fdo#108145] / [i915#265]) -> [DMESG-FAIL][96] ([fdo#108145] / [i915#1982]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk9/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk8/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html * igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm: - shard-tglb: [DMESG-WARN][97] ([i915#2411]) -> [SKIP][98] ([i915#2648]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb7/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb8/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html * igt@runner@aborted: - shard-kbl: ([FAIL][99], [FAIL][100]) ([i915#1436] / [i915#1611] / [i915#2295] / [i915#2439] / [i915#483]) -> [FAIL][101] ([i915#1611] / [i915#2295] / [i915#2439] / [i915#483]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-kbl2/igt@runner@aborted.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-kbl3/igt@runner@aborted.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-kbl6/igt@runner@aborted.html - shard-glk: ([FAIL][102], [FAIL][103], [FAIL][104]) ([i915#1611] / [i915#1814] / [i915#2295] / [i915#2439] / [k.org#202321]) -> [FAIL][105] ([i915#1611] / [i915#2295] / [i915#2439] / [k.org#202321]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk1/igt@runner@aborted.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk2/igt@runner@aborted.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-glk8/igt@runner@aborted.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-glk5/igt@runner@aborted.html - shard-tglb: ([FAIL][106], [FAIL][107], [FAIL][108]) ([i915#1602] / [i915#2295] / [i915#2439] / [i915#402]) -> [FAIL][109] ([i915#2295] / [i915#2439]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb3/igt@runner@aborted.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb2/igt@runner@aborted.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9359/shard-tglb3/igt@runner@aborted.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/shard-tglb6/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321 [fdo#110336]: https://bugs.freedesktop.org/show_bug.cgi?id=110336 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#1373]: https://gitlab.freedesktop.org/drm/intel/issues/1373 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#1611]: https://gitlab.freedesktop.org/drm/intel/issues/1611 [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635 [i915#1798]: https://gitlab.freedesktop.org/drm/intel/issues/1798 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2439]: https://gitlab.freedesktop.org/drm/intel/issues/2439 [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262 [i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635 [i915#2648]: https://gitlab.freedesktop.org/drm/intel/issues/2648 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456 [i915#483]: https://gitlab.freedesktop.org/drm/intel/issues/483 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#794]: https://gitlab.freedesktop.org/drm/intel/issues/794 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321 Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-snb-2600 pig-glk-j5005 pig-skl-6260u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5858 -> IGTPW_5193 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_9359: 5529f30897761dc08c5cfcefc6d1659f9250d622 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5193: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5193/index.html IGT_5858: 300ee395f5c0ed53ab0757d9c5b311f9c1f641c8 @ 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_5193/index.html [-- Attachment #1.2: Type: text/html, Size: 29901 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] 15+ messages in thread
[parent not found: <d2626430918a4c0c98e98d7a9c067864@intel.com>]
* Re: [igt-dev] FW: ✓ Fi.CI.IGT: success for tests/kms_big_joiner: Add test to validate big joiner (rev5) [not found] ` <d2626430918a4c0c98e98d7a9c067864@intel.com> @ 2020-11-20 6:52 ` Kunal Joshi 0 siblings, 0 replies; 15+ messages in thread From: Kunal Joshi @ 2020-11-20 6:52 UTC (permalink / raw) To: karthik.b.s, patchwork, igt-dev No failures seen due to the patch. Patch can be merged. _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2020-11-20 6:51 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-07 6:09 [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner Karthik B S
2020-10-07 7:02 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_big_joiner: Add test to validate big joiner (rev4) Patchwork
2020-10-07 9:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-11-17 10:45 ` Karthik B S
2020-11-17 17:11 ` Vudum, Lakshminarayana
2020-11-18 3:50 ` Karthik B S
2020-11-18 16:36 ` Vudum, Lakshminarayana
2020-11-19 6:18 ` Karthik B S
2020-11-19 8:39 ` Petri Latvala
2020-11-20 4:28 ` Karthik B S
2020-11-17 6:21 ` [igt-dev] [PATCH i-g-t v4] tests/kms_big_joiner: Add test to validate big joiner Navare, Manasi
2020-11-17 10:49 ` Karthik B S
2020-11-19 10:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_big_joiner: Add test to validate big joiner (rev5) Patchwork
2020-11-19 14:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
[not found] ` <d2626430918a4c0c98e98d7a9c067864@intel.com>
2020-11-20 6:52 ` [igt-dev] FW: " Kunal Joshi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox