* [igt-dev] [PATCH i-g-t 1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs"
@ 2022-11-07 15:20 Ville Syrjala
2022-11-07 15:20 ` [igt-dev] [PATCH i-g-t 2/2] Revert "tests/kms_invalid_mode: Test Cleanup" Ville Syrjala
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Ville Syrjala @ 2022-11-07 15:20 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
This reverts commit 52c06782816c1dfaf721308d70d9dca83f7eff16.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
tests/kms_invalid_mode.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c
index f1c38669860d..8c345766d192 100644
--- a/tests/kms_invalid_mode.c
+++ b/tests/kms_invalid_mode.c
@@ -185,7 +185,6 @@ test_output(data_t *data)
int ret;
drmModeModeInfo *mode;
- igt_display_reset(&data->display);
igt_output_set_pipe(output, data->pipe);
igt_create_fb(data->drm_fd, 512, 512, DRM_FORMAT_XRGB8888,
@@ -203,6 +202,7 @@ test_output(data_t *data)
igt_remove_fb(data->drm_fd, &fb);
igt_output_override_mode(output, NULL);
/*unset_all_crtcs*/
+ igt_display_reset(&data->display);
igt_display_commit(&data->display);
}
--
2.37.4
^ permalink raw reply related [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t 2/2] Revert "tests/kms_invalid_mode: Test Cleanup" 2022-11-07 15:20 [igt-dev] [PATCH i-g-t 1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" Ville Syrjala @ 2022-11-07 15:20 ` Ville Syrjala 2022-11-08 23:55 ` Gupta, Nidhi1 2022-11-07 16:21 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Ville Syrjala @ 2022-11-07 15:20 UTC (permalink / raw) To: igt-dev; +Cc: Nidhi Gupta From: Ville Syrjälä <ville.syrjala@linux.intel.com> This reverts commit 6725767a84109e934ca138d94df0482386c44532. This was no cleanup. It does fifteen different things and in the process flat out breaks the test at least on all non-atomic drivers/platforms. Cc: Nidhi Gupta <nidhi1.gupta@intel.com> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- tests/kms_invalid_mode.c | 39 ++++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c index 8c345766d192..40042d4e81a5 100644 --- a/tests/kms_invalid_mode.c +++ b/tests/kms_invalid_mode.c @@ -35,6 +35,7 @@ struct _data { enum pipe pipe; igt_display_t display; igt_output_t *output; + drmModeResPtr res; int max_dotclock; bool (*adjust_mode)(data_t *data, drmModeModeInfoPtr mode); }; @@ -181,29 +182,35 @@ static void test_output(data_t *data) { igt_output_t *output = data->output; + drmModeModeInfo mode; struct igt_fb fb; int ret; - drmModeModeInfo *mode; + uint32_t crtc_id; - igt_output_set_pipe(output, data->pipe); + /* + * FIXME test every mode we have to be more + * sure everything is really getting rejected? + */ + mode = *igt_output_get_mode(output); + igt_require(data->adjust_mode(data, &mode)); - igt_create_fb(data->drm_fd, 512, 512, DRM_FORMAT_XRGB8888, + igt_create_fb(data->drm_fd, + max_t(uint16_t, mode.hdisplay, 64), + max_t(uint16_t, mode.vdisplay, 64), + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &fb); - for_each_connector_mode(output) { - mode = &output->config.connector->modes[j__]; - igt_require(data->adjust_mode(data, mode)); - igt_output_override_mode(output, mode); - ret = igt_display_try_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); - igt_assert(ret == -EINVAL); - } + kmstest_unset_all_crtcs(data->drm_fd, data->res); + + crtc_id = data->display.pipes[data->pipe].crtc_id; + + ret = drmModeSetCrtc(data->drm_fd, crtc_id, + fb.fb_id, 0, 0, + &output->id, 1, &mode); + igt_assert_lt(ret, 0); igt_remove_fb(data->drm_fd, &fb); - igt_output_override_mode(output, NULL); - /*unset_all_crtcs*/ - igt_display_reset(&data->display); - igt_display_commit(&data->display); } static int i915_max_dotclock(data_t *data) @@ -283,10 +290,11 @@ igt_main kmstest_set_vt_graphics_mode(); igt_display_require(&data.display, data.drm_fd); + data.res = drmModeGetResources(data.drm_fd); + igt_assert(data.res); data.max_dotclock = i915_max_dotclock(&data); igt_info("Max dotclock: %d kHz\n", data.max_dotclock); - igt_display_require_output(&data.display); } igt_describe("Make sure all modesets are rejected when the requested mode is invalid"); @@ -306,6 +314,7 @@ igt_main igt_fixture { igt_display_fini(&data.display); igt_reset_connectors(); + drmModeFreeResources(data.res); close(data.drm_fd); } } -- 2.37.4 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] Revert "tests/kms_invalid_mode: Test Cleanup" 2022-11-07 15:20 ` [igt-dev] [PATCH i-g-t 2/2] Revert "tests/kms_invalid_mode: Test Cleanup" Ville Syrjala @ 2022-11-08 23:55 ` Gupta, Nidhi1 0 siblings, 0 replies; 7+ messages in thread From: Gupta, Nidhi1 @ 2022-11-08 23:55 UTC (permalink / raw) To: Ville Syrjala, igt-dev@lists.freedesktop.org -----Original Message----- From: Ville Syrjala <ville.syrjala@linux.intel.com> Sent: Monday, November 7, 2022 8:51 PM To: igt-dev@lists.freedesktop.org Cc: Gupta, Nidhi1 <nidhi1.gupta@intel.com>; Modem, Bhanuprakash <bhanuprakash.modem@intel.com> Subject: [PATCH i-g-t 2/2] Revert "tests/kms_invalid_mode: Test Cleanup" From: Ville Syrjälä <ville.syrjala@linux.intel.com> This reverts commit 6725767a84109e934ca138d94df0482386c44532. This was no cleanup. It does fifteen different things and in the process flat out breaks the test at least on all non-atomic drivers/platforms. Cc: Nidhi Gupta <nidhi1.gupta@intel.com> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Acked-by: Nidhi Gupta <nidhi1.gupta@intel.com> --- tests/kms_invalid_mode.c | 39 ++++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c index 8c345766d192..40042d4e81a5 100644 --- a/tests/kms_invalid_mode.c +++ b/tests/kms_invalid_mode.c @@ -35,6 +35,7 @@ struct _data { enum pipe pipe; igt_display_t display; igt_output_t *output; + drmModeResPtr res; int max_dotclock; bool (*adjust_mode)(data_t *data, drmModeModeInfoPtr mode); }; @@ -181,29 +182,35 @@ static void test_output(data_t *data) { igt_output_t *output = data->output; + drmModeModeInfo mode; struct igt_fb fb; int ret; - drmModeModeInfo *mode; + uint32_t crtc_id; - igt_output_set_pipe(output, data->pipe); + /* + * FIXME test every mode we have to be more + * sure everything is really getting rejected? + */ + mode = *igt_output_get_mode(output); + igt_require(data->adjust_mode(data, &mode)); - igt_create_fb(data->drm_fd, 512, 512, DRM_FORMAT_XRGB8888, + igt_create_fb(data->drm_fd, + max_t(uint16_t, mode.hdisplay, 64), + max_t(uint16_t, mode.vdisplay, 64), + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &fb); - for_each_connector_mode(output) { - mode = &output->config.connector->modes[j__]; - igt_require(data->adjust_mode(data, mode)); - igt_output_override_mode(output, mode); - ret = igt_display_try_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); - igt_assert(ret == -EINVAL); - } + kmstest_unset_all_crtcs(data->drm_fd, data->res); + + crtc_id = data->display.pipes[data->pipe].crtc_id; + + ret = drmModeSetCrtc(data->drm_fd, crtc_id, + fb.fb_id, 0, 0, + &output->id, 1, &mode); + igt_assert_lt(ret, 0); igt_remove_fb(data->drm_fd, &fb); - igt_output_override_mode(output, NULL); - /*unset_all_crtcs*/ - igt_display_reset(&data->display); - igt_display_commit(&data->display); } static int i915_max_dotclock(data_t *data) @@ -283,10 +290,11 @@ igt_main kmstest_set_vt_graphics_mode(); igt_display_require(&data.display, data.drm_fd); + data.res = drmModeGetResources(data.drm_fd); + igt_assert(data.res); data.max_dotclock = i915_max_dotclock(&data); igt_info("Max dotclock: %d kHz\n", data.max_dotclock); - igt_display_require_output(&data.display); } igt_describe("Make sure all modesets are rejected when the requested mode is invalid"); @@ -306,6 +314,7 @@ igt_main igt_fixture { igt_display_fini(&data.display); igt_reset_connectors(); + drmModeFreeResources(data.res); close(data.drm_fd); } } -- 2.37.4 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" 2022-11-07 15:20 [igt-dev] [PATCH i-g-t 1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" Ville Syrjala 2022-11-07 15:20 ` [igt-dev] [PATCH i-g-t 2/2] Revert "tests/kms_invalid_mode: Test Cleanup" Ville Syrjala @ 2022-11-07 16:21 ` Patchwork 2022-11-08 16:54 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-11-07 16:21 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9395 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" URL : https://patchwork.freedesktop.org/series/110611/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12350 -> IGTPW_8057 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8057 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8057, 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_8057/index.html Participating hosts (32 -> 38) ------------------------------ Additional (11): fi-kbl-soraka bat-dg2-8 bat-dg2-9 bat-adlp-6 bat-adlp-4 bat-adln-1 bat-rplp-1 bat-rpls-1 bat-rpls-2 bat-dg2-11 bat-jsl-1 Missing (5): fi-cml-u2 fi-ilk-m540 fi-hsw-4200u fi-ctg-p8600 fi-bdw-samus Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8057: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@perf: - fi-kbl-soraka: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-kbl-soraka/igt@i915_selftest@live@perf.html Known issues ------------ Here are the changes found in IGTPW_8057 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_gttfill@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271]) +8 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-kbl-soraka/igt@gem_exec_gttfill@basic.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_tiled_pread_basic: - bat-adlp-4: NOTRUN -> [SKIP][5] ([i915#3282]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/bat-adlp-4/igt@gem_tiled_pread_basic.html * igt@i915_pm_rpm@basic-pci-d3-state: - bat-adlp-4: NOTRUN -> [DMESG-WARN][6] ([i915#7077]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/bat-adlp-4/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][7] ([i915#5334]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#1886]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-hsw-4770: NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#111827]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html - fi-rkl-guc: NOTRUN -> [SKIP][10] ([fdo#111827]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-rkl-guc/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@dp-crc-fast: - bat-adlp-4: NOTRUN -> [SKIP][11] ([fdo#111827]) +7 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/bat-adlp-4/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-soraka: NOTRUN -> [SKIP][12] ([fdo#109271] / [fdo#111827]) +7 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-kbl-soraka/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor: - bat-adlp-4: NOTRUN -> [SKIP][13] ([i915#4103]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/bat-adlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlp-4: NOTRUN -> [SKIP][14] ([i915#4093]) +3 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/bat-adlp-4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-4: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#4579]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/bat-adlp-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@runner@aborted: - bat-adlp-4: NOTRUN -> [FAIL][16] ([i915#4312]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/bat-adlp-4/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [INCOMPLETE][17] ([i915#4785]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12350/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html - fi-rkl-guc: [INCOMPLETE][19] ([i915#4983]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12350/fi-rkl-guc/igt@i915_selftest@live@hangcheck.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/fi-rkl-guc/igt@i915_selftest@live@hangcheck.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3003]: https://gitlab.freedesktop.org/drm/intel/issues/3003 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6559]: https://gitlab.freedesktop.org/drm/intel/issues/6559 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7308]: https://gitlab.freedesktop.org/drm/intel/issues/7308 [i915#7348]: https://gitlab.freedesktop.org/drm/intel/issues/7348 [i915#7355]: https://gitlab.freedesktop.org/drm/intel/issues/7355 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7046 -> IGTPW_8057 CI-20190529: 20190529 CI_DRM_12350: ce07b5c5defad15ae5fcc8e260738b08ce04a0a5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8057: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/index.html IGT_7046: c58d96d0fe237474b074e3472ce09c57c830d5de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8057/index.html [-- Attachment #2: Type: text/html, Size: 8753 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev2) 2022-11-07 15:20 [igt-dev] [PATCH i-g-t 1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" Ville Syrjala 2022-11-07 15:20 ` [igt-dev] [PATCH i-g-t 2/2] Revert "tests/kms_invalid_mode: Test Cleanup" Ville Syrjala 2022-11-07 16:21 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" Patchwork @ 2022-11-08 16:54 ` Patchwork 2022-11-08 22:09 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-09 0:22 ` [igt-dev] ✗ Fi.CI.BUILD: failure for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev3) Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-11-08 16:54 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6357 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev2) URL : https://patchwork.freedesktop.org/series/110611/ State : success == Summary == CI Bug Log - changes from CI_DRM_12355 -> IGTPW_8067 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/index.html Participating hosts (42 -> 38) ------------------------------ Additional (1): fi-hsw-4770 Missing (5): fi-ilk-m540 fi-rkl-11600 fi-tgl-dsi fi-ctg-p8600 fi-bdw-samus Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8067: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@hangcheck: - {fi-ehl-2}: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/fi-ehl-2/igt@i915_selftest@live@hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/fi-ehl-2/igt@i915_selftest@live@hangcheck.html Known issues ------------ Here are the changes found in IGTPW_8067 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_softpin@allocator-basic-reserve: - fi-hsw-4770: NOTRUN -> [SKIP][3] ([fdo#109271]) +9 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/fi-hsw-4770/igt@gem_softpin@allocator-basic-reserve.html * igt@i915_pm_backlight@basic-brightness: - fi-hsw-4770: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#3012]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html * igt@i915_selftest@live@hangcheck: - fi-rkl-guc: [PASS][5] -> [INCOMPLETE][6] ([i915#4983]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/fi-rkl-guc/igt@i915_selftest@live@hangcheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/fi-rkl-guc/igt@i915_selftest@live@hangcheck.html * igt@kms_chamelium@common-hpd-after-suspend: - bat-adlp-4: NOTRUN -> [SKIP][7] ([fdo#111827]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/bat-adlp-4/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@dp-crc-fast: - fi-hsw-4770: NOTRUN -> [SKIP][8] ([fdo#109271] / [fdo#111827]) +8 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/fi-hsw-4770/igt@kms_chamelium@dp-crc-fast.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-adlp-4: NOTRUN -> [SKIP][9] ([i915#3546]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/bat-adlp-4/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#1072]) +3 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - {bat-rplp-1}: [DMESG-WARN][11] ([i915#2867]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@migrate: - bat-adlp-4: [INCOMPLETE][13] ([i915#7308] / [i915#7348]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/bat-adlp-4/igt@i915_selftest@live@migrate.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/bat-adlp-4/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@reset: - {bat-rpls-2}: [DMESG-FAIL][15] ([i915#4983]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/bat-rpls-2/igt@i915_selftest@live@reset.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1: - fi-bsw-kefka: [DMESG-WARN][17] ([i915#1982]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/fi-bsw-kefka/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/fi-bsw-kefka/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.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#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434 [i915#6559]: https://gitlab.freedesktop.org/drm/intel/issues/6559 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7308]: https://gitlab.freedesktop.org/drm/intel/issues/7308 [i915#7346]: https://gitlab.freedesktop.org/drm/intel/issues/7346 [i915#7348]: https://gitlab.freedesktop.org/drm/intel/issues/7348 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7048 -> IGTPW_8067 CI-20190529: 20190529 CI_DRM_12355: 6e09529cef7c2dfdf199c3af1adb9c828d281d9b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8067: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/index.html IGT_7048: 5edd5c539f1fdf1c02157bf43fa1fd22d4ad2c75 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/index.html [-- Attachment #2: Type: text/html, Size: 7127 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev2) 2022-11-07 15:20 [igt-dev] [PATCH i-g-t 1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" Ville Syrjala ` (2 preceding siblings ...) 2022-11-08 16:54 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev2) Patchwork @ 2022-11-08 22:09 ` Patchwork 2022-11-09 0:22 ` [igt-dev] ✗ Fi.CI.BUILD: failure for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev3) Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-11-08 22:09 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 48231 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev2) URL : https://patchwork.freedesktop.org/series/110611/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12355_full -> IGTPW_8067_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8067_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8067_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_8067/index.html Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8067_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs: - shard-glk: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-glk3/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk9/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1: - shard-tglb: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-tglb2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html #### Warnings #### * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-c: - shard-iclb: [SKIP][5] ([i915#6403]) -> [SKIP][6] +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb3/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-c.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb1/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-c.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-tglb: [SKIP][7] ([i915#6403]) -> [SKIP][8] +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-tglb1/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb6/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_invalid_mode@bad-htotal: - {shard-rkl}: NOTRUN -> [SKIP][9] +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-1/igt@kms_invalid_mode@bad-htotal.html * igt@kms_invalid_mode@zero-clock: - {shard-rkl}: [SKIP][10] ([i915#1845] / [i915#4098]) -> [SKIP][11] +3 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-3/igt@kms_invalid_mode@zero-clock.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-4/igt@kms_invalid_mode@zero-clock.html * igt@prime_mmap_coherency@write: - {shard-rkl}: [PASS][12] -> [INCOMPLETE][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-4/igt@prime_mmap_coherency@write.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-2/igt@prime_mmap_coherency@write.html Known issues ------------ Here are the changes found in IGTPW_8067_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-4x: - shard-iclb: NOTRUN -> [SKIP][14] ([i915#1839]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb5/igt@feature_discovery@display-4x.html - shard-tglb: NOTRUN -> [SKIP][15] ([i915#1839]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb3/igt@feature_discovery@display-4x.html * igt@gem_ctx_persistence@hang: - shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#1099]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-snb7/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@reset-stress: - shard-tglb: [PASS][18] -> [FAIL][19] ([i915#5784]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-tglb6/igt@gem_eio@reset-stress.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb2/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@parallel: - shard-iclb: [PASS][20] -> [SKIP][21] ([i915#4525]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb1/igt@gem_exec_balancer@parallel.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb8/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][22] -> [FAIL][23] ([i915#2842]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][24] -> [FAIL][25] ([i915#2842]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_suspend@basic-s3@smem: - shard-apl: NOTRUN -> [DMESG-WARN][26] ([i915#180]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl6/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#2190]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl7/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify: - shard-iclb: NOTRUN -> [SKIP][28] ([i915#4613]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb1/igt@gem_lmem_swapping@verify.html - shard-apl: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl2/igt@gem_lmem_swapping@verify.html - shard-tglb: NOTRUN -> [SKIP][30] ([i915#4613]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb7/igt@gem_lmem_swapping@verify.html - shard-glk: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk2/igt@gem_lmem_swapping@verify.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-iclb: NOTRUN -> [SKIP][32] ([i915#4270]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb7/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-iclb: NOTRUN -> [SKIP][33] ([i915#768]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb5/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_userptr_blits@coherency-sync: - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109290]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb6/igt@gem_userptr_blits@coherency-sync.html - shard-tglb: NOTRUN -> [SKIP][35] ([fdo#110542]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#3297]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb8/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-iclb: NOTRUN -> [SKIP][37] ([i915#3297]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb5/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_workarounds@suspend-resume: - shard-apl: [PASS][38] -> [DMESG-WARN][39] ([i915#180]) +3 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-apl8/igt@gem_workarounds@suspend-resume.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl2/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#2527] / [i915#2856]) +2 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb3/igt@gen9_exec_parse@cmd-crossing-page.html - shard-iclb: NOTRUN -> [SKIP][41] ([i915#2856]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb5/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-apl: NOTRUN -> [FAIL][42] ([i915#7036]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglb: NOTRUN -> [WARN][43] ([i915#2681]) +3 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#111644] / [i915#1397] / [i915#2411]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb7/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#110892]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb2/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_sseu@full-enable: - shard-tglb: NOTRUN -> [SKIP][46] ([i915#4387]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb5/igt@i915_pm_sseu@full-enable.html - shard-iclb: NOTRUN -> [SKIP][47] ([i915#4387]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb3/igt@i915_pm_sseu@full-enable.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][48] ([i915#5286]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][49] ([i915#5286]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb8/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111614]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#110725] / [fdo#111614]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271]) +112 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][53] ([fdo#111615]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-iclb: NOTRUN -> [SKIP][54] ([fdo#110723]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109278]) +8 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb5/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs.html - shard-tglb: NOTRUN -> [SKIP][56] ([i915#3689] / [i915#6095]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb8/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#6095]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb5/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#3886]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl3/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][59] ([i915#3689] / [i915#3886]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb8/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#3886]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk9/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109278] / [i915#3886]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb5/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][62] ([i915#3689]) +3 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb5/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][63] ([fdo#111615] / [i915#3689]) +3 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb2/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html * igt@kms_chamelium@vga-hpd-after-suspend: - shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl1/igt@kms_chamelium@vga-hpd-after-suspend.html * igt@kms_color_chamelium@ctm-0-75: - shard-iclb: NOTRUN -> [SKIP][65] ([fdo#109284] / [fdo#111827]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb3/igt@kms_color_chamelium@ctm-0-75.html - shard-snb: NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-snb4/igt@kms_color_chamelium@ctm-0-75.html - shard-tglb: NOTRUN -> [SKIP][67] ([fdo#109284] / [fdo#111827]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb5/igt@kms_color_chamelium@ctm-0-75.html - shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271] / [fdo#111827]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk8/igt@kms_color_chamelium@ctm-0-75.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-1: - shard-apl: NOTRUN -> [INCOMPLETE][69] ([i915#7121] / [i915#7173]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#109274] / [fdo#111825]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_fbcon_fbt@fbc: - shard-apl: NOTRUN -> [FAIL][71] ([i915#4767]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl6/igt@kms_fbcon_fbt@fbc.html - shard-tglb: NOTRUN -> [FAIL][72] ([i915#4767]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb1/igt@kms_fbcon_fbt@fbc.html - shard-glk: NOTRUN -> [FAIL][73] ([i915#4767]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk2/igt@kms_fbcon_fbt@fbc.html - shard-iclb: NOTRUN -> [FAIL][74] ([i915#4767]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb6/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-tglb: NOTRUN -> [SKIP][75] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb5/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-iclb: NOTRUN -> [SKIP][76] ([fdo#109274]) +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb6/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][77] ([i915#2587] / [i915#2672]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][78] ([i915#2672]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109280]) +8 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-tglb: NOTRUN -> [SKIP][80] ([i915#6497]) +7 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109280] / [fdo#111825]) +7 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-glk: NOTRUN -> [SKIP][82] ([fdo#109271]) +56 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_hdr@bpc-switch: - shard-tglb: NOTRUN -> [SKIP][83] ([i915#3555]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb1/igt@kms_hdr@bpc-switch.html - shard-iclb: NOTRUN -> [SKIP][84] ([i915#3555]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb7/igt@kms_hdr@bpc-switch.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-tglb: NOTRUN -> [SKIP][85] ([fdo#109289]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb1/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-a-edp-1: - shard-iclb: NOTRUN -> [SKIP][86] ([i915#5176]) +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb6/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-a-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-b-edp-1: - shard-tglb: NOTRUN -> [SKIP][87] ([i915#5176]) +3 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb7/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-b-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: NOTRUN -> [SKIP][88] ([i915#658]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#658]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-tglb: NOTRUN -> [SKIP][90] ([i915#2920]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-glk: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-nv12@pipe-b-edp-1: - shard-iclb: NOTRUN -> [FAIL][92] ([i915#5939]) +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb2/igt@kms_psr2_su@page_flip-nv12@pipe-b-edp-1.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: NOTRUN -> [SKIP][93] ([fdo#109441]) +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-iclb: [PASS][94] -> [SKIP][95] ([fdo#109441]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb2/igt@kms_psr@psr2_sprite_plane_onoff.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb7/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_psr@psr2_suspend: - shard-tglb: NOTRUN -> [FAIL][96] ([i915#132] / [i915#3467]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb1/igt@kms_psr@psr2_suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: NOTRUN -> [SKIP][97] ([i915#5519]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-iclb: [PASS][98] -> [SKIP][99] ([i915#5519]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-glk: [PASS][100] -> [FAIL][101] ([i915#5852]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-glk7/igt@kms_rotation_crc@sprite-rotation-90.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk2/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_tv_load_detect@load-detect: - shard-snb: NOTRUN -> [SKIP][102] ([fdo#109271]) +88 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-snb5/igt@kms_tv_load_detect@load-detect.html - shard-tglb: NOTRUN -> [SKIP][103] ([fdo#109309]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb6/igt@kms_tv_load_detect@load-detect.html - shard-iclb: NOTRUN -> [SKIP][104] ([fdo#109309]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb2/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-b-wait-idle-hang: - shard-snb: [PASS][105] -> [SKIP][106] ([fdo#109271]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-snb7/igt@kms_vblank@pipe-b-wait-idle-hang.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-snb2/igt@kms_vblank@pipe-b-wait-idle-hang.html * igt@perf@gen12-mi-rpc: - shard-iclb: NOTRUN -> [SKIP][107] ([fdo#109289]) +2 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb5/igt@perf@gen12-mi-rpc.html * igt@sysfs_clients@fair-0: - shard-apl: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#2994]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl3/igt@sysfs_clients@fair-0.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglb: [FAIL][109] ([i915#6268]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-tglb3/igt@gem_ctx_exec@basic-nohangcheck.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@unwedge-stress: - {shard-dg1}: [FAIL][111] ([i915#5784]) -> [PASS][112] +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-dg1-15/igt@gem_eio@unwedge-stress.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-contexts: - shard-iclb: [SKIP][113] ([i915#4525]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb8/igt@gem_exec_balancer@parallel-contexts.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-deadline: - {shard-rkl}: [FAIL][115] ([i915#2846]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [FAIL][117] ([i915#2842]) -> [PASS][118] +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb2/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][119] ([i915#2842]) -> [PASS][120] +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-iclb: [FAIL][121] ([i915#2842]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb8/igt@gem_exec_fair@basic-pace@rcs0.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@basic-wait@bcs0: - {shard-rkl}: [SKIP][123] ([i915#6251]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-5/igt@gem_exec_fence@basic-wait@bcs0.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-1/igt@gem_exec_fence@basic-wait@bcs0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - {shard-rkl}: [SKIP][125] ([i915#3281]) -> [PASS][126] +9 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_readwrite@beyond-eob: - {shard-rkl}: [SKIP][127] ([i915#3282]) -> [PASS][128] +1 similar issue [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-3/igt@gem_readwrite@beyond-eob.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-5/igt@gem_readwrite@beyond-eob.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [FAIL][129] ([i915#4171]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-tglb6/igt@gem_softpin@evict-single-offset.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb7/igt@gem_softpin@evict-single-offset.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [DMESG-WARN][131] ([i915#5566] / [i915#716]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-apl7/igt@gen9_exec_parse@allowed-single.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl2/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-chained: - {shard-rkl}: [SKIP][133] ([i915#2527]) -> [PASS][134] +2 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][135] ([i915#3989] / [i915#454]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb3/igt@i915_pm_dc@dc6-psr.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb5/igt@i915_pm_dc@dc6-psr.html * igt@kms_atomic@atomic_plane_damage: - {shard-rkl}: [SKIP][137] ([i915#4098]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-1/igt@kms_atomic@atomic_plane_damage.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-6/igt@kms_atomic@atomic_plane_damage.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - {shard-rkl}: [SKIP][139] ([i915#1845] / [i915#4098]) -> [PASS][140] +12 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs: - shard-iclb: [FAIL][141] -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-iclb: [SKIP][143] ([i915#3555]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - {shard-rkl}: [SKIP][145] ([i915#1849] / [i915#4098]) -> [PASS][146] +5 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_plane@pixel-format@pipe-b-planes: - {shard-rkl}: [SKIP][147] ([i915#3558]) -> [PASS][148] +1 similar issue [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-1/igt@kms_plane@pixel-format@pipe-b-planes.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-6/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-iclb: [SKIP][149] ([i915#5176]) -> [PASS][150] +1 similar issue [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_psr@suspend: - {shard-rkl}: [SKIP][151] ([i915#1072]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-rkl-3/igt@kms_psr@suspend.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-rkl-6/igt@kms_psr@suspend.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-apl: [DMESG-WARN][153] ([i915#180]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-apl1/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl1/igt@kms_vblank@pipe-b-ts-continuation-suspend.html * igt@perf_pmu@busy-double-start@vecs0: - {shard-dg1}: [FAIL][155] ([i915#4349]) -> [PASS][156] +1 similar issue [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-dg1-16/igt@perf_pmu@busy-double-start@vecs0.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-dg1-19/igt@perf_pmu@busy-double-start@vecs0.html #### Warnings #### * igt@gem_pwrite@basic-exhaustion: - shard-apl: [INCOMPLETE][157] ([i915#7248]) -> [WARN][158] ([i915#2658]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-apl3/igt@gem_pwrite@basic-exhaustion.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl8/igt@gem_pwrite@basic-exhaustion.html - shard-tglb: [WARN][159] ([i915#2658]) -> [INCOMPLETE][160] ([i915#7248]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-tglb3/igt@gem_pwrite@basic-exhaustion.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-tglb6/igt@gem_pwrite@basic-exhaustion.html - shard-glk: [WARN][161] ([i915#2658]) -> [INCOMPLETE][162] ([i915#7248]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-glk5/igt@gem_pwrite@basic-exhaustion.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-glk6/igt@gem_pwrite@basic-exhaustion.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-iclb: [SKIP][163] ([i915#2920]) -> [SKIP][164] ([i915#658]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-iclb: [SKIP][165] ([i915#658]) -> [SKIP][166] ([i915#2920]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb7/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-iclb: [SKIP][167] ([fdo#111068] / [i915#658]) -> [SKIP][168] ([i915#2920]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb5/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-iclb: [SKIP][169] ([i915#2920]) -> [SKIP][170] ([fdo#111068] / [i915#658]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-iclb1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][171], [FAIL][172], [FAIL][173], [FAIL][174]) ([fdo#109271] / [i915#3002] / [i915#4312]) -> ([FAIL][175], [FAIL][176], [FAIL][177], [FAIL][178], [FAIL][179], [FAIL][180], [FAIL][181]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-apl7/igt@runner@aborted.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-apl7/igt@runner@aborted.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-apl6/igt@runner@aborted.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12355/shard-apl1/igt@runner@aborted.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl1/igt@runner@aborted.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl2/igt@runner@aborted.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl7/igt@runner@aborted.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl2/igt@runner@aborted.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl1/igt@runner@aborted.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl6/igt@runner@aborted.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/shard-apl8/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#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3692]: https://gitlab.freedesktop.org/drm/intel/issues/3692 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5852]: https://gitlab.freedesktop.org/drm/intel/issues/5852 [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7121]: https://gitlab.freedesktop.org/drm/intel/issues/7121 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7048 -> IGTPW_8067 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12355: 6e09529cef7c2dfdf199c3af1adb9c828d281d9b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8067: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/index.html IGT_7048: 5edd5c539f1fdf1c02157bf43fa1fd22d4ad2c75 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8067/index.html [-- Attachment #2: Type: text/html, Size: 53894 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.BUILD: failure for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev3) 2022-11-07 15:20 [igt-dev] [PATCH i-g-t 1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" Ville Syrjala ` (3 preceding siblings ...) 2022-11-08 22:09 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-09 0:22 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-11-09 0:22 UTC (permalink / raw) To: Gupta, Nidhi1; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev3) URL : https://patchwork.freedesktop.org/series/110611/ State : failure == Summary == Applying: Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" Applying: Revert "tests/kms_invalid_mode: Test Cleanup" Patch failed at 0002 Revert "tests/kms_invalid_mode: Test Cleanup" When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-11-09 0:22 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-11-07 15:20 [igt-dev] [PATCH i-g-t 1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" Ville Syrjala 2022-11-07 15:20 ` [igt-dev] [PATCH i-g-t 2/2] Revert "tests/kms_invalid_mode: Test Cleanup" Ville Syrjala 2022-11-08 23:55 ` Gupta, Nidhi1 2022-11-07 16:21 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" Patchwork 2022-11-08 16:54 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev2) Patchwork 2022-11-08 22:09 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-09 0:22 ` [igt-dev] ✗ Fi.CI.BUILD: failure for series starting with [i-g-t,1/2] Revert "tests/kms_invalid_mode: Avoid usage of same pipe on multiple outputs" (rev3) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox