* [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_dsc: Add a new subtest to validate 10bpc format
@ 2021-11-18 11:17 venkata.sai.patnana
2021-11-18 11:17 ` [igt-dev] [PATCH i-g-t 1/2] " venkata.sai.patnana
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: venkata.sai.patnana @ 2021-11-18 11:17 UTC (permalink / raw)
To: igt-dev
From: Patnana Venkata Sai <venkata.sai.patnana@intel.com>
Created new subtest to validate 10 bpc format.
Also optimize logic as below:
Instead of checking the connectors dsc support in
each subtest, check at the starting of the test and
preserve the status to use all over the subtests.
Patnana Venkata Sai (2):
tests/i915/kms_dsc: Add a new subtest to validate 10bpc format
HAX: Add kms_dsc tests to fast-feedback
tests/i915/kms_dsc.c | 94 ++++++++++++++++-----------
tests/intel-ci/fast-feedback.testlist | 70 +-------------------
2 files changed, 60 insertions(+), 104 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] tests/i915/kms_dsc: Add a new subtest to validate 10bpc format 2021-11-18 11:17 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_dsc: Add a new subtest to validate 10bpc format venkata.sai.patnana @ 2021-11-18 11:17 ` venkata.sai.patnana 2021-11-18 11:17 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add kms_dsc tests to fast-feedback venkata.sai.patnana ` (3 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: venkata.sai.patnana @ 2021-11-18 11:17 UTC (permalink / raw) To: igt-dev From: Patnana Venkata Sai <venkata.sai.patnana@intel.com> Created new subtest to validate 10 bpc format. Also optimize logic as below: Instead of checking the connectors dsc support in each subtest, check at the starting of the test and preserve the status to use all over the subtests. Cc: Vandita Kulkarni <vandita.kulkarni@intel.com> Cc: Karthik B S <karthik.b.s@intel.com> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Cc: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Patnana Venkata Sai <venkata.sai.patnana@intel.com> --- tests/i915/kms_dsc.c | 94 +++++++++++++++++++++++++++----------------- 1 file changed, 57 insertions(+), 37 deletions(-) diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c index 25f7676a4c..43665c4286 100644 --- a/tests/i915/kms_dsc.c +++ b/tests/i915/kms_dsc.c @@ -65,7 +65,6 @@ typedef struct { int compression_bpp; int n_pipes; enum pipe pipe; - char conn_name[128]; } data_t; bool force_dsc_en_orig; @@ -80,7 +79,7 @@ static void force_dsc_enable(data_t *data) { int ret; - igt_debug ("Forcing DSC enable on %s\n", data->conn_name); + igt_debug ("Forcing DSC enable on %s\n", data->output->name); ret = igt_force_dsc_enable(data->drm_fd, data->output->config.connector); igt_assert_f(ret > 0, "debugfs_write failed"); @@ -91,7 +90,7 @@ static void force_dsc_enable_bpp(data_t *data) int ret; igt_debug("Forcing DSC BPP to %d on %s\n", - data->compression_bpp, data->conn_name); + data->compression_bpp, data->output->name); ret = igt_force_dsc_enable_bpp(data->drm_fd, data->output->config.connector, data->compression_bpp); @@ -159,15 +158,14 @@ static int sort_drm_modes(const void *a, const void *b) return (mode1->clock < mode2->clock) - (mode2->clock < mode1->clock); } -static bool check_dsc_on_connector(data_t *data, uint32_t drmConnector) +static igt_output_t *check_dsc_on_connector(data_t *data, uint32_t drmConnector) { drmModeConnector *connector; igt_output_t *output; - connector = drmModeGetConnectorCurrent(data->drm_fd, drmConnector); if (connector->connection != DRM_MODE_CONNECTED) - return false; + return NULL; output = igt_output_from_connector(&data->display, connector); @@ -183,30 +181,26 @@ static bool check_dsc_on_connector(data_t *data, uint32_t drmConnector) output->config.connector->modes[0].hdisplay < 5120) return NULL; - sprintf(data->conn_name, "%s-%d", - kmstest_connector_type_str(connector->connector_type), - connector->connector_type_id); - if (!igt_is_dsc_supported(data->drm_fd, connector)) { igt_debug("DSC not supported on connector %s\n", - data->conn_name); - return false; + output->name); + return NULL; } if (is_external_panel(connector) && !igt_is_fec_supported(data->drm_fd, connector)) { igt_debug("DSC cannot be enabled without FEC on %s\n", - data->conn_name); - return false; + output->name); + return NULL; } - data->output = output; - return true; + return output; } /* * Re-probe connectors and do a modeset with DSC * */ -static void update_display(data_t *data, enum dsc_test_type test_type) +static void update_display(data_t *data, enum dsc_test_type test_type, + unsigned int drm_format) { bool enabled; igt_plane_t *primary; @@ -215,7 +209,7 @@ static void update_display(data_t *data, enum dsc_test_type test_type) igt_output_set_pipe(data->output, PIPE_NONE); igt_display_commit(&data->display); - igt_debug("DSC is supported on %s\n", data->conn_name); + igt_debug("DSC is supported on %s\n", data->output->name); save_force_dsc_en(data); force_dsc_enable(data); if (test_type == test_dsc_compression_bpp) { @@ -225,12 +219,14 @@ static void update_display(data_t *data, enum dsc_test_type test_type) igt_output_set_pipe(data->output, data->pipe); qsort(data->output->config.connector->modes, - data->output->config.connector->count_modes, - sizeof(drmModeModeInfo), - sort_drm_modes); + data->output->config.connector->count_modes, + sizeof(drmModeModeInfo), + sort_drm_modes); igt_output_override_mode(data->output, &data->output->config.connector->modes[0]); primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY); + igt_skip_on_f(!igt_plane_has_format_mod(primary, drm_format, DRM_FORMAT_MOD_LINEAR), + "plane %s format does not have support\n", igt_format_str(drm_format)); /* Now set the output to the desired mode */ igt_plane_set_fb(primary, &data->fb_test_pattern); @@ -243,7 +239,7 @@ static void update_display(data_t *data, enum dsc_test_type test_type) manual("RGB test pattern without corruption"); enabled = igt_is_dsc_enabled(data->drm_fd, - data->output->config.connector); + data->output->config.connector); restore_force_dsc_en(); igt_debug("Reset compression BPP\n"); data->compression_bpp = 0; @@ -251,11 +247,12 @@ static void update_display(data_t *data, enum dsc_test_type test_type) igt_assert_f(enabled, "Default DSC enable failed on Connector: %s Pipe: %s\n", - data->conn_name, + data->output->name, kmstest_pipe_name(data->pipe)); } -static void run_test(data_t *data, enum dsc_test_type test_type) +static void run_test(data_t *data, enum dsc_test_type test_type, + unsigned int drm_format) { enum pipe pipe; char test_name[10]; @@ -267,7 +264,7 @@ static void run_test(data_t *data, enum dsc_test_type test_type) igt_create_pattern_fb(data->drm_fd, data->output->config.connector->modes[0].hdisplay, data->output->config.connector->modes[0].vdisplay, - DRM_FORMAT_XRGB8888, + drm_format, DRM_FORMAT_MOD_LINEAR, &data->fb_test_pattern); @@ -293,9 +290,10 @@ static void run_test(data_t *data, enum dsc_test_type test_type) (pipe == (data->n_pipes - 1)), "pipe-%s not supported due to bigjoiner limitation\n", kmstest_pipe_name(pipe)); - update_display(data, test_type); + update_display(data, test_type, drm_format); } + if (test_type == test_dsc_compression_bpp) break; } @@ -308,7 +306,17 @@ igt_main data_t data = {}; drmModeRes *res; drmModeConnector *connector = NULL; - int i, j; + igt_output_t *outputs[IGT_MAX_PIPES] = {}; + igt_output_t *output; + int i, j, supported_connectors = 0; + struct { + unsigned int bpc; + int format; + char format_str[20]; + } test_list[] = { + {8, DRM_FORMAT_XRGB8888, "XRGB8888"}, + {10, DRM_FORMAT_XRGB2101010, "XRGB2101010"}, + }; igt_fixture { data.drm_fd = drm_open_driver_master(DRIVER_INTEL); data.devid = intel_get_drm_devid(data.drm_fd); @@ -316,17 +324,30 @@ igt_main igt_install_exit_handler(kms_dsc_exit_handler); igt_display_require(&data.display, data.drm_fd); igt_require(res = drmModeGetResources(data.drm_fd)); + for (j = 0; j < res->count_connectors; j++) { + output = check_dsc_on_connector(&data, res->connectors[j]); + + if (output) + outputs[supported_connectors++] = output; + } + igt_require_f(supported_connectors, "No DSC supported panel connected.\n"); data.n_pipes = 0; for_each_pipe(&data.display, i) data.n_pipes++; + } - igt_subtest_with_dynamic("basic-dsc-enable") { - for (j = 0; j < res->count_connectors; j++) { - if (!check_dsc_on_connector(&data, res->connectors[j])) - continue; - run_test(&data, test_basic_dsc_enable); + + for (i = 0; i < ARRAY_SIZE(test_list); i++) { + igt_subtest_with_dynamic_f("basic-dsc-enable-%s", + test_list[i].format_str) { + for (j = 0; j < supported_connectors; j++) { + data.output = outputs[j]; + run_test(&data, test_basic_dsc_enable, + test_list[i].format); + } } } + /* currently we are validating compression bpp on XRGB8888 format only */ igt_subtest_with_dynamic("XRGB8888-dsc-compression") { uint32_t bpp_list[] = { @@ -338,13 +359,12 @@ igt_main igt_require(intel_display_ver(data.devid) >= 13); - for (j = 0; j < res->count_connectors; j++) { - if (!check_dsc_on_connector(&data, res->connectors[j])) - continue; - + for (j = 0; j < supported_connectors; j++) { + data.output = outputs[j]; for (i = 0; i < ARRAY_SIZE(bpp_list); i++) { data.compression_bpp = bpp_list[i]; - run_test(&data, test_dsc_compression_bpp); + run_test(&data, test_dsc_compression_bpp, + DRM_FORMAT_XRGB8888); } } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] HAX: Add kms_dsc tests to fast-feedback 2021-11-18 11:17 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_dsc: Add a new subtest to validate 10bpc format venkata.sai.patnana 2021-11-18 11:17 ` [igt-dev] [PATCH i-g-t 1/2] " venkata.sai.patnana @ 2021-11-18 11:17 ` venkata.sai.patnana 2021-11-18 13:39 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: venkata.sai.patnana @ 2021-11-18 11:17 UTC (permalink / raw) To: igt-dev From: Patnana Venkata Sai <venkata.sai.patnana@intel.com> Signed-off-by: Patnana Venkata Sai <venkata.sai.patnana@intel.com> --- tests/intel-ci/fast-feedback.testlist | 70 ++------------------------- 1 file changed, 3 insertions(+), 67 deletions(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index de1c6cb46c..1061f4460d 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -11,8 +11,6 @@ igt@gem_basic@bad-close igt@gem_basic@create-close igt@gem_basic@create-fd-close igt@gem_busy@busy@all -igt@gem_close_race@basic-process -igt@gem_close_race@basic-threads igt@gem_ctx_create@basic igt@gem_ctx_create@basic-files igt@gem_ctx_exec@basic @@ -27,31 +25,6 @@ igt@gem_exec_parallel@engines igt@gem_exec_store@basic igt@gem_exec_suspend@basic-s0 igt@gem_exec_suspend@basic-s3 -igt@gem_flink_basic@bad-flink -igt@gem_flink_basic@bad-open -igt@gem_flink_basic@basic -igt@gem_flink_basic@double-flink -igt@gem_flink_basic@flink-lifetime -igt@gem_huc_copy@huc-copy -igt@gem_linear_blits@basic -igt@gem_lmem_swapping@basic -igt@gem_lmem_swapping@parallel-random-engines -igt@gem_lmem_swapping@random-engines -igt@gem_lmem_swapping@verify-random -igt@gem_mmap@basic -igt@gem_mmap_gtt@basic -igt@gem_render_linear_blits@basic -igt@gem_render_tiled_blits@basic -igt@gem_ringfill@basic-all -igt@gem_softpin@allocator-basic -igt@gem_softpin@allocator-basic-reserve -igt@gem_sync@basic-all -igt@gem_sync@basic-each -igt@gem_tiled_blits@basic -igt@gem_tiled_fence_blits@basic -igt@gem_tiled_pread_basic -igt@gem_wait@busy@all -igt@gem_wait@wait@all igt@i915_getparams_basic@basic-eu-total igt@i915_getparams_basic@basic-subslice-total igt@i915_hangman@error-state-basic @@ -132,48 +105,11 @@ igt@kms_pipe_crc_basic@read-crc-pipe-b igt@kms_pipe_crc_basic@read-crc-pipe-c igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a -igt@kms_psr@primary_page_flip -igt@kms_psr@cursor_plane_move -igt@kms_psr@sprite_plane_onoff -igt@kms_psr@primary_mmap_gtt +igt@kms_dsc@basic-dsc-enable-xrgb8888 +igt@kms_dsc@basic-dsc-enable-xrgb2101010 +igt@kms_dsc@xrgb8888-dsc-compression igt@kms_setmode@basic-clone-single-crtc igt@i915_pm_backlight@basic-brightness igt@i915_pm_rpm@basic-pci-d3-state igt@i915_pm_rpm@basic-rte igt@i915_pm_rps@basic-api -igt@prime_self_import@basic-llseek-bad -igt@prime_self_import@basic-llseek-size -igt@prime_self_import@basic-with_fd_dup -igt@prime_self_import@basic-with_one_bo -igt@prime_self_import@basic-with_one_bo_two_files -igt@prime_self_import@basic-with_two_bos -igt@prime_vgem@basic-fence-flip -igt@prime_vgem@basic-fence-mmap -igt@prime_vgem@basic-fence-read -igt@prime_vgem@basic-gtt -igt@prime_vgem@basic-read -igt@prime_vgem@basic-write -igt@prime_vgem@basic-userptr -igt@vgem_basic@setversion -igt@vgem_basic@create -igt@vgem_basic@debugfs -igt@vgem_basic@dmabuf-export -igt@vgem_basic@dmabuf-fence -igt@vgem_basic@dmabuf-fence-before -igt@vgem_basic@dmabuf-mmap -igt@vgem_basic@mmap -igt@vgem_basic@second-client -igt@vgem_basic@sysfs - -# All tests that do module unloading and reloading are executed last. -# They will sometimes reveal issues of earlier tests leaving the -# driver in a broken state that is not otherwise noticed in that test. - -igt@core_hotunplug@unbind-rebind -igt@vgem_basic@unload -igt@i915_module_load@reload -igt@i915_pm_rpm@module-reload - -# Kernel selftests -igt@i915_selftest@live -igt@dmabuf@all -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format 2021-11-18 11:17 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_dsc: Add a new subtest to validate 10bpc format venkata.sai.patnana 2021-11-18 11:17 ` [igt-dev] [PATCH i-g-t 1/2] " venkata.sai.patnana 2021-11-18 11:17 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add kms_dsc tests to fast-feedback venkata.sai.patnana @ 2021-11-18 13:39 ` Patchwork 2021-11-23 10:29 ` Patnana, Venkata Sai 2021-11-23 17:10 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2021-11-23 18:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2021-11-18 13:39 UTC (permalink / raw) To: venkata.sai.patnana; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 12665 bytes --] == Series Details == Series: tests/i915/kms_dsc: Add a new subtest to validate 10bpc format URL : https://patchwork.freedesktop.org/series/97074/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10900 -> IGTPW_6415 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_6415 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6415, 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_6415/index.html Participating hosts (38 -> 33) ------------------------------ Additional (1): fi-tgl-1115g4 Missing (6): fi-hsw-4200u fi-tgl-u2 fi-bsw-cyan fi-ctg-p8600 bat-jsl-2 bat-jsl-1 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6415: ### IGT changes ### #### Possible regressions #### * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): - fi-cml-u2: NOTRUN -> [SKIP][1] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-rkl-guc: NOTRUN -> [SKIP][2] +2 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-guc/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - {fi-tgl-dsi}: NOTRUN -> [SKIP][3] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-dsi/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): - fi-tgl-1115g4: NOTRUN -> [SKIP][4] +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_dsc@basic-dsc-enable-xrgb8888.html * igt@kms_dsc@xrgb8888-dsc-compression: - fi-rkl-11600: NOTRUN -> [SKIP][5] +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-11600/igt@kms_dsc@xrgb8888-dsc-compression.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_dsc@xrgb8888-dsc-compression: - {fi-tgl-dsi}: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-dsi/igt@kms_dsc@xrgb8888-dsc-compression.html New tests --------- New tests have been introduced between CI_DRM_10900 and IGTPW_6415: ### New IGT tests (8) ### * igt@kms_dsc@basic-dsc-enable-xrgb2101010: - Statuses : 28 skip(s) - Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-a: - Statuses : 2 pass(s) - Exec time: [1.23, 1.24] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-b: - Statuses : 2 pass(s) - Exec time: [1.15, 1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-c: - Statuses : 2 pass(s) - Exec time: [1.15, 1.22] s * igt@kms_dsc@basic-dsc-enable-xrgb8888: - Statuses : 28 skip(s) - Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-a: - Statuses : 2 pass(s) - Exec time: [1.19, 1.25] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-b: - Statuses : 2 pass(s) - Exec time: [1.15, 1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-c: - Statuses : 2 pass(s) - Exec time: [1.15, 1.21] s Known issues ------------ Here are the changes found in IGTPW_6415 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@cs-sdma: - fi-kbl-guc: NOTRUN -> [SKIP][7] ([fdo#109271]) +20 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-guc/igt@amdgpu/amd_basic@cs-sdma.html * igt@amdgpu/amd_basic@query-info: - fi-tgl-1115g4: NOTRUN -> [SKIP][8] ([fdo#109315]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@amdgpu/amd_basic@query-info.html * igt@amdgpu/amd_cs_nop@nop-gfx0: - fi-tgl-1115g4: NOTRUN -> [SKIP][9] ([fdo#109315] / [i915#2575]) +16 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@amdgpu/amd_cs_nop@nop-gfx0.html * igt@amdgpu/amd_cs_nop@sync-fork-gfx0: - fi-skl-6600u: NOTRUN -> [SKIP][10] ([fdo#109271]) +23 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html * igt@i915_pm_backlight@basic-brightness: - fi-tgl-1115g4: NOTRUN -> [SKIP][11] ([i915#1155]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@i915_pm_backlight@basic-brightness.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-tgl-1115g4: NOTRUN -> [SKIP][12] ([fdo#111827]) +8 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@vga-edid-read: - fi-skl-6600u: NOTRUN -> [SKIP][13] ([fdo#109271] / [fdo#111827]) +8 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-tgl-1115g4: NOTRUN -> [SKIP][14] ([i915#4103]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): - fi-ilk-650: NOTRUN -> [SKIP][15] ([fdo#109271]) +2 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-ilk-650/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-ivb-3770: NOTRUN -> [SKIP][16] ([fdo#109271]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-ivb-3770/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-bsw-kefka: NOTRUN -> [SKIP][17] ([fdo#109271]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bsw-kefka/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-kbl-x1275: NOTRUN -> [SKIP][18] ([fdo#109271]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-x1275/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-blb-e6850: NOTRUN -> [SKIP][19] ([fdo#109271]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-blb-e6850/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-kbl-7500u: NOTRUN -> [SKIP][20] ([fdo#109271]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-7500u/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): - fi-cfl-8109u: NOTRUN -> [SKIP][21] ([fdo#109271]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8109u/igt@kms_dsc@basic-dsc-enable-xrgb8888.html - fi-bwr-2160: NOTRUN -> [SKIP][22] ([fdo#109271]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bwr-2160/igt@kms_dsc@basic-dsc-enable-xrgb8888.html - fi-snb-2600: NOTRUN -> [SKIP][23] ([fdo#109271]) +20 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-snb-2600/igt@kms_dsc@basic-dsc-enable-xrgb8888.html - fi-elk-e7500: NOTRUN -> [SKIP][24] ([fdo#109271]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-elk-e7500/igt@kms_dsc@basic-dsc-enable-xrgb8888.html - {fi-hsw-gt1}: NOTRUN -> [SKIP][25] ([fdo#109271]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-hsw-gt1/igt@kms_dsc@basic-dsc-enable-xrgb8888.html * igt@kms_dsc@xrgb8888-dsc-compression: - fi-cfl-guc: NOTRUN -> [SKIP][26] ([fdo#109271]) +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-kbl-soraka: NOTRUN -> [SKIP][27] ([fdo#109271]) +20 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-soraka/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-hsw-4770: NOTRUN -> [SKIP][28] ([fdo#109271]) +2 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-hsw-4770/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-skl-6700k2: NOTRUN -> [SKIP][29] ([fdo#109271]) +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6700k2/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-cfl-8700k: NOTRUN -> [SKIP][30] ([fdo#109271]) +2 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8700k/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-bsw-nick: NOTRUN -> [SKIP][31] ([fdo#109271]) +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bsw-nick/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-kbl-8809g: NOTRUN -> [SKIP][32] ([fdo#109271]) +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-8809g/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-snb-2520m: NOTRUN -> [SKIP][33] ([fdo#109271]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-snb-2520m/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-kbl-7567u: NOTRUN -> [SKIP][34] ([fdo#109271]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-7567u/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-skl-guc: NOTRUN -> [SKIP][35] ([fdo#109271]) +2 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html * igt@kms_force_connector_basic@force-load-detect: - fi-tgl-1115g4: NOTRUN -> [SKIP][36] ([fdo#109285]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: - fi-cfl-8109u: [PASS][37] -> [DMESG-WARN][38] ([i915#295]) +12 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-skl-6600u: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#533]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - fi-cml-u2: [DMESG-WARN][40] ([i915#4269]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.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#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295 [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6285 -> IGTPW_6415 CI-20190529: 20190529 CI_DRM_10900: b50839f33180500c64a505623ab77829b869a57c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6415: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html IGT_6285: 2e0355faad5c2e81cd6705b76e529ce526c7c9bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Testlist changes == +igt@kms_dsc@basic-dsc-enable-xrgb8888 +igt@kms_dsc@basic-dsc-enable-xrgb2101010 -igt@kms_dsc@basic-dsc-enable == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html [-- Attachment #2: Type: text/html, Size: 15986 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format 2021-11-18 13:39 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format Patchwork @ 2021-11-23 10:29 ` Patnana, Venkata Sai 2021-11-23 17:14 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 9+ messages in thread From: Patnana, Venkata Sai @ 2021-11-23 10:29 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Vudum, Lakshminarayana; +Cc: Kurmi, Suresh Kumar [-- Attachment #1: Type: text/plain, Size: 13695 bytes --] Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> All kms_dsc test results skips are expected only. Dsc supported panel only it will pass. Where it is passed on those setups. Can you please check these results. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/bat-all.html?testfilter=kms_dsc thanks sai From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Thursday, November 18, 2021 7:09 PM To: Patnana, Venkata Sai <venkata.sai.patnana@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format Patch Details Series: tests/i915/kms_dsc: Add a new subtest to validate 10bpc format URL: https://patchwork.freedesktop.org/series/97074/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html CI Bug Log - changes from CI_DRM_10900 -> IGTPW_6415 Summary FAILURE Serious unknown changes coming with IGTPW_6415 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6415, 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_6415/index.html Participating hosts (38 -> 33) Additional (1): fi-tgl-1115g4 Missing (6): fi-hsw-4200u fi-tgl-u2 fi-bsw-cyan fi-ctg-p8600 bat-jsl-2 bat-jsl-1 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_6415: IGT changes Possible regressions * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): * fi-cml-u2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> +2 similar issues * fi-rkl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-guc/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> +2 similar issues * {fi-tgl-dsi}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-dsi/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> +1 similar issue * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> +2 similar issues * igt@kms_dsc@xrgb8888-dsc-compression: * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-11600/igt@kms_dsc@xrgb8888-dsc-compression.html> +2 similar issues Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_dsc@xrgb8888-dsc-compression: * {fi-tgl-dsi}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-dsi/igt@kms_dsc@xrgb8888-dsc-compression.html> New tests New tests have been introduced between CI_DRM_10900 and IGTPW_6415: New IGT tests (8) * igt@kms_dsc@basic-dsc-enable-xrgb2101010: * Statuses : 28 skip(s) * Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-a: * Statuses : 2 pass(s) * Exec time: [1.23, 1.24] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-b: * Statuses : 2 pass(s) * Exec time: [1.15, 1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-c: * Statuses : 2 pass(s) * Exec time: [1.15, 1.22] s * igt@kms_dsc@basic-dsc-enable-xrgb8888: * Statuses : 28 skip(s) * Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-a: * Statuses : 2 pass(s) * Exec time: [1.19, 1.25] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-b: * Statuses : 2 pass(s) * Exec time: [1.15, 1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-c: * Statuses : 2 pass(s) * Exec time: [1.15, 1.21] s Known issues Here are the changes found in IGTPW_6415 that come from known issues: IGT changes Issues hit * igt@amdgpu/amd_basic@cs-sdma: * fi-kbl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-guc/igt@amdgpu/amd_basic@cs-sdma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +20 similar issues * igt@amdgpu/amd_basic@query-info: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@amdgpu/amd_basic@query-info.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315>) * igt@amdgpu/amd_cs_nop@nop-gfx0: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@amdgpu/amd_cs_nop@nop-gfx0.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315> / i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +16 similar issues * igt@amdgpu/amd_cs_nop@sync-fork-gfx0: * fi-skl-6600u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +23 similar issues * igt@i915_pm_backlight@basic-brightness: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@i915_pm_backlight@basic-brightness.html> (i915#1155<https://gitlab.freedesktop.org/drm/intel/issues/1155>) * igt@kms_chamelium@common-hpd-after-suspend: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_chamelium@common-hpd-after-suspend.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues * igt@kms_chamelium@vga-edid-read: * fi-skl-6600u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (i915#4103<https://gitlab.freedesktop.org/drm/intel/issues/4103>) +1 similar issue * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): * fi-ilk-650: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-ilk-650/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-ivb-3770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-ivb-3770/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-bsw-kefka: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bsw-kefka/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-x1275: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-x1275/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-blb-e6850: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-blb-e6850/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-7500u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-7500u/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): * fi-cfl-8109u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8109u/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-bwr-2160: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bwr-2160/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-snb-2600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-snb-2600/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +20 similar issues * fi-elk-e7500: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-elk-e7500/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * {fi-hsw-gt1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-hsw-gt1/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1 similar issue * igt@kms_dsc@xrgb8888-dsc-compression: * fi-cfl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-soraka: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-soraka/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +20 similar issues * fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-hsw-4770/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-skl-6700k2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6700k2/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-cfl-8700k: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8700k/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-bsw-nick: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bsw-nick/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-8809g/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-snb-2520m: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-snb-2520m/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-7567u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-7567u/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-skl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * igt@kms_force_connector_basic@force-load-detect: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285<https://bugs.freedesktop.org/show_bug.cgi?id=109285>) * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: * fi-cfl-8109u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html> (i915#295<https://gitlab.freedesktop.org/drm/intel/issues/295>) +12 similar issues * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: * fi-skl-6600u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) Possible fixes * igt@kms_frontbuffer_tracking@basic: * fi-cml-u2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html> (i915#4269<https://gitlab.freedesktop.org/drm/intel/issues/4269>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html> {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6285 -> IGTPW_6415 CI-20190529: 20190529 CI_DRM_10900: b50839f33180500c64a505623ab77829b869a57c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6415: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html IGT_6285: 2e0355faad5c2e81cd6705b76e529ce526c7c9bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Testlist changes == +igt@kms_dsc@basic-dsc-enable-xrgb8888 +igt@kms_dsc@basic-dsc-enable-xrgb2101010 -igt@kms_dsc@basic-dsc-enable [-- Attachment #2: Type: text/html, Size: 41430 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format 2021-11-23 10:29 ` Patnana, Venkata Sai @ 2021-11-23 17:14 ` Vudum, Lakshminarayana 2021-11-29 4:57 ` Patnana, Venkata Sai 0 siblings, 1 reply; 9+ messages in thread From: Vudum, Lakshminarayana @ 2021-11-23 17:14 UTC (permalink / raw) To: Patnana, Venkata Sai, igt-dev@lists.freedesktop.org; +Cc: Kurmi, Suresh Kumar [-- Attachment #1: Type: text/plain, Size: 14536 bytes --] Filed this issue and closed as expected https://gitlab.freedesktop.org/drm/intel/-/issues/4611 igt@kms_dsc@.*<mailto:igt@kms_dsc@.*> - skip - Test requirement: supported_connectors, No DSC supported panel connected., SKIP Re-reported. Thanks, Lakshmi. From: Patnana, Venkata Sai <venkata.sai.patnana@intel.com> Sent: Tuesday, November 23, 2021 2:30 AM To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Cc: Kulkarni, Vandita <vandita.kulkarni@intel.com>; Sharma, Swati2 <swati2.sharma@intel.com>; Kurmi, Suresh Kumar <suresh.kumar.kurmi@intel.com> Subject: RE: ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> All kms_dsc test results skips are expected only. Dsc supported panel only it will pass. Where it is passed on those setups. Can you please check these results. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/bat-all.html?testfilter=kms_dsc thanks sai From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> Sent: Thursday, November 18, 2021 7:09 PM To: Patnana, Venkata Sai <venkata.sai.patnana@intel.com<mailto:venkata.sai.patnana@intel.com>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format Patch Details Series: tests/i915/kms_dsc: Add a new subtest to validate 10bpc format URL: https://patchwork.freedesktop.org/series/97074/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html CI Bug Log - changes from CI_DRM_10900 -> IGTPW_6415 Summary FAILURE Serious unknown changes coming with IGTPW_6415 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6415, 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_6415/index.html Participating hosts (38 -> 33) Additional (1): fi-tgl-1115g4 Missing (6): fi-hsw-4200u fi-tgl-u2 fi-bsw-cyan fi-ctg-p8600 bat-jsl-2 bat-jsl-1 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_6415: IGT changes Possible regressions * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): * fi-cml-u2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> +2 similar issues * fi-rkl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-guc/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> +2 similar issues * {fi-tgl-dsi}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-dsi/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> +1 similar issue * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> +2 similar issues * igt@kms_dsc@xrgb8888-dsc-compression: * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-11600/igt@kms_dsc@xrgb8888-dsc-compression.html> +2 similar issues Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_dsc@xrgb8888-dsc-compression: * {fi-tgl-dsi}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-dsi/igt@kms_dsc@xrgb8888-dsc-compression.html> New tests New tests have been introduced between CI_DRM_10900 and IGTPW_6415: New IGT tests (8) * igt@kms_dsc@basic-dsc-enable-xrgb2101010: * Statuses : 28 skip(s) * Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-a: * Statuses : 2 pass(s) * Exec time: [1.23, 1.24] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-b: * Statuses : 2 pass(s) * Exec time: [1.15, 1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-c: * Statuses : 2 pass(s) * Exec time: [1.15, 1.22] s * igt@kms_dsc@basic-dsc-enable-xrgb8888: * Statuses : 28 skip(s) * Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-a: * Statuses : 2 pass(s) * Exec time: [1.19, 1.25] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-b: * Statuses : 2 pass(s) * Exec time: [1.15, 1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-c: * Statuses : 2 pass(s) * Exec time: [1.15, 1.21] s Known issues Here are the changes found in IGTPW_6415 that come from known issues: IGT changes Issues hit * igt@amdgpu/amd_basic@cs-sdma: * fi-kbl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-guc/igt@amdgpu/amd_basic@cs-sdma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +20 similar issues * igt@amdgpu/amd_basic@query-info: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@amdgpu/amd_basic@query-info.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315>) * igt@amdgpu/amd_cs_nop@nop-gfx0: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@amdgpu/amd_cs_nop@nop-gfx0.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315> / i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +16 similar issues * igt@amdgpu/amd_cs_nop@sync-fork-gfx0: * fi-skl-6600u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +23 similar issues * igt@i915_pm_backlight@basic-brightness: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@i915_pm_backlight@basic-brightness.html> (i915#1155<https://gitlab.freedesktop.org/drm/intel/issues/1155>) * igt@kms_chamelium@common-hpd-after-suspend: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_chamelium@common-hpd-after-suspend.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues * igt@kms_chamelium@vga-edid-read: * fi-skl-6600u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (i915#4103<https://gitlab.freedesktop.org/drm/intel/issues/4103>) +1 similar issue * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): * fi-ilk-650: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-ilk-650/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-ivb-3770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-ivb-3770/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-bsw-kefka: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bsw-kefka/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-x1275: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-x1275/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-blb-e6850: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-blb-e6850/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-7500u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-7500u/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): * fi-cfl-8109u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8109u/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-bwr-2160: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bwr-2160/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-snb-2600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-snb-2600/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +20 similar issues * fi-elk-e7500: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-elk-e7500/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * {fi-hsw-gt1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-hsw-gt1/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1 similar issue * igt@kms_dsc@xrgb8888-dsc-compression: * fi-cfl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-soraka: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-soraka/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +20 similar issues * fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-hsw-4770/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-skl-6700k2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6700k2/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-cfl-8700k: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8700k/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-bsw-nick: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bsw-nick/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-8809g/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-snb-2520m: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-snb-2520m/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-7567u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-7567u/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-skl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * igt@kms_force_connector_basic@force-load-detect: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285<https://bugs.freedesktop.org/show_bug.cgi?id=109285>) * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: * fi-cfl-8109u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html> (i915#295<https://gitlab.freedesktop.org/drm/intel/issues/295>) +12 similar issues * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: * fi-skl-6600u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) Possible fixes * igt@kms_frontbuffer_tracking@basic: * fi-cml-u2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html> (i915#4269<https://gitlab.freedesktop.org/drm/intel/issues/4269>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html> {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6285 -> IGTPW_6415 CI-20190529: 20190529 CI_DRM_10900: b50839f33180500c64a505623ab77829b869a57c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6415: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html IGT_6285: 2e0355faad5c2e81cd6705b76e529ce526c7c9bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Testlist changes == +igt@kms_dsc@basic-dsc-enable-xrgb8888 +igt@kms_dsc@basic-dsc-enable-xrgb2101010 -igt@kms_dsc@basic-dsc-enable [-- Attachment #2: Type: text/html, Size: 46739 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format 2021-11-23 17:14 ` Vudum, Lakshminarayana @ 2021-11-29 4:57 ` Patnana, Venkata Sai 0 siblings, 0 replies; 9+ messages in thread From: Patnana, Venkata Sai @ 2021-11-29 4:57 UTC (permalink / raw) To: Vudum, Lakshminarayana, igt-dev@lists.freedesktop.org Cc: Kunche, Kishore, Kurmi, Suresh Kumar [-- Attachment #1: Type: text/plain, Size: 15536 bytes --] Hi @Vudum, Lakshminarayana<mailto:lakshminarayana.vudum@intel.com>, I have uploaded new revision. Can you please update BAT test results. Skips are expected in not supported platforms https://patchwork.freedesktop.org/series/97074/#rev2 https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6430/bat-all.html?testfilter=kms_dsc thanks sai From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Sent: Tuesday, November 23, 2021 10:45 PM To: Patnana, Venkata Sai <venkata.sai.patnana@intel.com>; igt-dev@lists.freedesktop.org Cc: Kulkarni, Vandita <vandita.kulkarni@intel.com>; Sharma, Swati2 <swati2.sharma@intel.com>; Kurmi, Suresh Kumar <suresh.kumar.kurmi@intel.com> Subject: RE: ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format Filed this issue and closed as expected https://gitlab.freedesktop.org/drm/intel/-/issues/4611 igt@kms_dsc@.*<mailto:igt@kms_dsc@.*> - skip - Test requirement: supported_connectors, No DSC supported panel connected., SKIP Re-reported. Thanks, Lakshmi. From: Patnana, Venkata Sai <venkata.sai.patnana@intel.com<mailto:venkata.sai.patnana@intel.com>> Sent: Tuesday, November 23, 2021 2:30 AM To: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>> Cc: Kulkarni, Vandita <vandita.kulkarni@intel.com<mailto:vandita.kulkarni@intel.com>>; Sharma, Swati2 <swati2.sharma@intel.com<mailto:swati2.sharma@intel.com>>; Kurmi, Suresh Kumar <suresh.kumar.kurmi@intel.com<mailto:suresh.kumar.kurmi@intel.com>> Subject: RE: ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format Hi @Vudum, Lakshminarayana<mailto:Lakshminarayana.Vudum@intel.com> All kms_dsc test results skips are expected only. Dsc supported panel only it will pass. Where it is passed on those setups. Can you please check these results. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/bat-all.html?testfilter=kms_dsc thanks sai From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> Sent: Thursday, November 18, 2021 7:09 PM To: Patnana, Venkata Sai <venkata.sai.patnana@intel.com<mailto:venkata.sai.patnana@intel.com>> Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> Subject: ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format Patch Details Series: tests/i915/kms_dsc: Add a new subtest to validate 10bpc format URL: https://patchwork.freedesktop.org/series/97074/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html CI Bug Log - changes from CI_DRM_10900 -> IGTPW_6415 Summary FAILURE Serious unknown changes coming with IGTPW_6415 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6415, 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_6415/index.html Participating hosts (38 -> 33) Additional (1): fi-tgl-1115g4 Missing (6): fi-hsw-4200u fi-tgl-u2 fi-bsw-cyan fi-ctg-p8600 bat-jsl-2 bat-jsl-1 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_6415: IGT changes Possible regressions * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): * fi-cml-u2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> +2 similar issues * fi-rkl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-guc/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> +2 similar issues * {fi-tgl-dsi}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-dsi/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> +1 similar issue * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> +2 similar issues * igt@kms_dsc@xrgb8888-dsc-compression: * fi-rkl-11600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-11600/igt@kms_dsc@xrgb8888-dsc-compression.html> +2 similar issues Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_dsc@xrgb8888-dsc-compression: * {fi-tgl-dsi}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-dsi/igt@kms_dsc@xrgb8888-dsc-compression.html> New tests New tests have been introduced between CI_DRM_10900 and IGTPW_6415: New IGT tests (8) * igt@kms_dsc@basic-dsc-enable-xrgb2101010: * Statuses : 28 skip(s) * Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-a: * Statuses : 2 pass(s) * Exec time: [1.23, 1.24] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-b: * Statuses : 2 pass(s) * Exec time: [1.15, 1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-c: * Statuses : 2 pass(s) * Exec time: [1.15, 1.22] s * igt@kms_dsc@basic-dsc-enable-xrgb8888: * Statuses : 28 skip(s) * Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-a: * Statuses : 2 pass(s) * Exec time: [1.19, 1.25] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-b: * Statuses : 2 pass(s) * Exec time: [1.15, 1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-c: * Statuses : 2 pass(s) * Exec time: [1.15, 1.21] s Known issues Here are the changes found in IGTPW_6415 that come from known issues: IGT changes Issues hit * igt@amdgpu/amd_basic@cs-sdma: * fi-kbl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-guc/igt@amdgpu/amd_basic@cs-sdma.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +20 similar issues * igt@amdgpu/amd_basic@query-info: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@amdgpu/amd_basic@query-info.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315>) * igt@amdgpu/amd_cs_nop@nop-gfx0: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@amdgpu/amd_cs_nop@nop-gfx0.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315> / i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +16 similar issues * igt@amdgpu/amd_cs_nop@sync-fork-gfx0: * fi-skl-6600u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +23 similar issues * igt@i915_pm_backlight@basic-brightness: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@i915_pm_backlight@basic-brightness.html> (i915#1155<https://gitlab.freedesktop.org/drm/intel/issues/1155>) * igt@kms_chamelium@common-hpd-after-suspend: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_chamelium@common-hpd-after-suspend.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues * igt@kms_chamelium@vga-edid-read: * fi-skl-6600u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (i915#4103<https://gitlab.freedesktop.org/drm/intel/issues/4103>) +1 similar issue * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): * fi-ilk-650: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-ilk-650/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-ivb-3770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-ivb-3770/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-bsw-kefka: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bsw-kefka/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-x1275: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-x1275/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-blb-e6850: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-blb-e6850/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-7500u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-7500u/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): * fi-cfl-8109u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8109u/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-bwr-2160: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bwr-2160/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-snb-2600: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-snb-2600/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +20 similar issues * fi-elk-e7500: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-elk-e7500/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * {fi-hsw-gt1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-hsw-gt1/igt@kms_dsc@basic-dsc-enable-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1 similar issue * igt@kms_dsc@xrgb8888-dsc-compression: * fi-cfl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-soraka: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-soraka/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +20 similar issues * fi-hsw-4770: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-hsw-4770/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-skl-6700k2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6700k2/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-cfl-8700k: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8700k/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-bsw-nick: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bsw-nick/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-8809g/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-snb-2520m: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-snb-2520m/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-kbl-7567u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-7567u/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * fi-skl-guc: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * igt@kms_force_connector_basic@force-load-detect: * fi-tgl-1115g4: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285<https://bugs.freedesktop.org/show_bug.cgi?id=109285>) * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: * fi-cfl-8109u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html> (i915#295<https://gitlab.freedesktop.org/drm/intel/issues/295>) +12 similar issues * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: * fi-skl-6600u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) Possible fixes * igt@kms_frontbuffer_tracking@basic: * fi-cml-u2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html> (i915#4269<https://gitlab.freedesktop.org/drm/intel/issues/4269>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html> {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_6285 -> IGTPW_6415 CI-20190529: 20190529 CI_DRM_10900: b50839f33180500c64a505623ab77829b869a57c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6415: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html IGT_6285: 2e0355faad5c2e81cd6705b76e529ce526c7c9bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Testlist changes == +igt@kms_dsc@basic-dsc-enable-xrgb8888 +igt@kms_dsc@basic-dsc-enable-xrgb2101010 -igt@kms_dsc@basic-dsc-enable [-- Attachment #2: Type: text/html, Size: 48920 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format 2021-11-18 11:17 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_dsc: Add a new subtest to validate 10bpc format venkata.sai.patnana ` (2 preceding siblings ...) 2021-11-18 13:39 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format Patchwork @ 2021-11-23 17:10 ` Patchwork 2021-11-23 18:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-11-23 17:10 UTC (permalink / raw) To: venkata.sai.patnana; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 12755 bytes --] == Series Details == Series: tests/i915/kms_dsc: Add a new subtest to validate 10bpc format URL : https://patchwork.freedesktop.org/series/97074/ State : success == Summary == CI Bug Log - changes from CI_DRM_10900 -> IGTPW_6415 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html Participating hosts (38 -> 33) ------------------------------ Additional (1): fi-tgl-1115g4 Missing (6): fi-hsw-4200u fi-tgl-u2 fi-bsw-cyan fi-ctg-p8600 bat-jsl-2 bat-jsl-1 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6415: ### IGT changes ### #### Possible regressions #### * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): - fi-cml-u2: NOTRUN -> [SKIP][1] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-rkl-guc: NOTRUN -> [SKIP][2] +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-guc/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - {fi-tgl-dsi}: NOTRUN -> [SKIP][3] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-dsi/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): - fi-tgl-1115g4: NOTRUN -> [SKIP][4] +1 similar issue [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_dsc@basic-dsc-enable-xrgb8888.html - fi-rkl-11600: NOTRUN -> [SKIP][5] +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-11600/igt@kms_dsc@basic-dsc-enable-xrgb8888.html New tests --------- New tests have been introduced between CI_DRM_10900 and IGTPW_6415: ### New IGT tests (8) ### * igt@kms_dsc@basic-dsc-enable-xrgb2101010: - Statuses : 28 skip(s) - Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-a: - Statuses : 2 pass(s) - Exec time: [1.23, 1.24] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-b: - Statuses : 2 pass(s) - Exec time: [1.15, 1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-c: - Statuses : 2 pass(s) - Exec time: [1.15, 1.22] s * igt@kms_dsc@basic-dsc-enable-xrgb8888: - Statuses : 28 skip(s) - Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-a: - Statuses : 2 pass(s) - Exec time: [1.19, 1.25] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-b: - Statuses : 2 pass(s) - Exec time: [1.15, 1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-c: - Statuses : 2 pass(s) - Exec time: [1.15, 1.21] s Known issues ------------ Here are the changes found in IGTPW_6415 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@cs-sdma: - fi-kbl-guc: NOTRUN -> [SKIP][6] ([fdo#109271]) +20 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-guc/igt@amdgpu/amd_basic@cs-sdma.html * igt@amdgpu/amd_basic@query-info: - fi-tgl-1115g4: NOTRUN -> [SKIP][7] ([fdo#109315]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@amdgpu/amd_basic@query-info.html * igt@amdgpu/amd_cs_nop@nop-gfx0: - fi-tgl-1115g4: NOTRUN -> [SKIP][8] ([fdo#109315] / [i915#2575]) +16 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@amdgpu/amd_cs_nop@nop-gfx0.html * igt@amdgpu/amd_cs_nop@sync-fork-gfx0: - fi-skl-6600u: NOTRUN -> [SKIP][9] ([fdo#109271]) +23 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html * igt@i915_pm_backlight@basic-brightness: - fi-tgl-1115g4: NOTRUN -> [SKIP][10] ([i915#1155]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@i915_pm_backlight@basic-brightness.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-tgl-1115g4: NOTRUN -> [SKIP][11] ([fdo#111827]) +8 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@vga-edid-read: - fi-skl-6600u: NOTRUN -> [SKIP][12] ([fdo#109271] / [fdo#111827]) +8 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-tgl-1115g4: NOTRUN -> [SKIP][13] ([i915#4103]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): - fi-ilk-650: NOTRUN -> [SKIP][14] ([fdo#109271]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-ilk-650/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-ivb-3770: NOTRUN -> [SKIP][15] ([fdo#109271]) +2 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-ivb-3770/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-bsw-kefka: NOTRUN -> [SKIP][16] ([fdo#109271]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bsw-kefka/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-kbl-x1275: NOTRUN -> [SKIP][17] ([fdo#109271]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-x1275/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-blb-e6850: NOTRUN -> [SKIP][18] ([fdo#109271]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-blb-e6850/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html - fi-kbl-7500u: NOTRUN -> [SKIP][19] ([fdo#109271]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-7500u/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): - fi-cfl-8109u: NOTRUN -> [SKIP][20] ([fdo#109271]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8109u/igt@kms_dsc@basic-dsc-enable-xrgb8888.html - fi-bwr-2160: NOTRUN -> [SKIP][21] ([fdo#109271]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bwr-2160/igt@kms_dsc@basic-dsc-enable-xrgb8888.html - fi-snb-2600: NOTRUN -> [SKIP][22] ([fdo#109271]) +20 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-snb-2600/igt@kms_dsc@basic-dsc-enable-xrgb8888.html - fi-elk-e7500: NOTRUN -> [SKIP][23] ([fdo#109271]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-elk-e7500/igt@kms_dsc@basic-dsc-enable-xrgb8888.html - {fi-hsw-gt1}: NOTRUN -> [SKIP][24] ([fdo#109271]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-hsw-gt1/igt@kms_dsc@basic-dsc-enable-xrgb8888.html * igt@kms_dsc@xrgb8888-dsc-compression: - fi-cfl-guc: NOTRUN -> [SKIP][25] ([fdo#109271]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-kbl-soraka: NOTRUN -> [SKIP][26] ([fdo#109271]) +20 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-soraka/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-hsw-4770: NOTRUN -> [SKIP][27] ([fdo#109271]) +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-hsw-4770/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-skl-6700k2: NOTRUN -> [SKIP][28] ([fdo#109271]) +2 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6700k2/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-cml-u2: NOTRUN -> [SKIP][29] ([i915#4611]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-cfl-8700k: NOTRUN -> [SKIP][30] ([fdo#109271]) +2 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8700k/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-tgl-1115g4: NOTRUN -> [SKIP][31] ([i915#4611]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-bsw-nick: NOTRUN -> [SKIP][32] ([fdo#109271]) +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-bsw-nick/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-kbl-8809g: NOTRUN -> [SKIP][33] ([fdo#109271]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-8809g/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-snb-2520m: NOTRUN -> [SKIP][34] ([fdo#109271]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-snb-2520m/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-kbl-7567u: NOTRUN -> [SKIP][35] ([fdo#109271]) +2 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-kbl-7567u/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-skl-guc: NOTRUN -> [SKIP][36] ([fdo#109271]) +2 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-rkl-11600: NOTRUN -> [SKIP][37] ([i915#4611]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-11600/igt@kms_dsc@xrgb8888-dsc-compression.html - fi-rkl-guc: NOTRUN -> [SKIP][38] ([i915#4611]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-rkl-guc/igt@kms_dsc@xrgb8888-dsc-compression.html * igt@kms_force_connector_basic@force-load-detect: - fi-tgl-1115g4: NOTRUN -> [SKIP][39] ([fdo#109285]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: - fi-cfl-8109u: [PASS][40] -> [DMESG-WARN][41] ([i915#295]) +12 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-skl-6600u: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#533]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - fi-cml-u2: [DMESG-WARN][43] ([i915#4269]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.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#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295 [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269 [i915#4611]: https://gitlab.freedesktop.org/drm/intel/issues/4611 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6285 -> IGTPW_6415 CI-20190529: 20190529 CI_DRM_10900: b50839f33180500c64a505623ab77829b869a57c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6415: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html IGT_6285: 2e0355faad5c2e81cd6705b76e529ce526c7c9bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Testlist changes == +igt@kms_dsc@basic-dsc-enable-xrgb8888 +igt@kms_dsc@basic-dsc-enable-xrgb2101010 -igt@kms_dsc@basic-dsc-enable == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html [-- Attachment #2: Type: text/html, Size: 16262 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format 2021-11-18 11:17 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_dsc: Add a new subtest to validate 10bpc format venkata.sai.patnana ` (3 preceding siblings ...) 2021-11-23 17:10 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2021-11-23 18:10 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-11-23 18:10 UTC (permalink / raw) To: venkata.sai.patnana; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 30280 bytes --] == Series Details == Series: tests/i915/kms_dsc: Add a new subtest to validate 10bpc format URL : https://patchwork.freedesktop.org/series/97074/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10900_full -> IGTPW_6415_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_6415_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6415_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_6415/index.html Participating hosts (11 -> 7) ------------------------------ Missing (4): pig-skl-6260u pig-kbl-iris shard-rkl pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6415_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@submit-golden-slice@rcs0: - shard-kbl: [PASS][1] -> [INCOMPLETE][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-kbl3/igt@gem_exec_schedule@submit-golden-slice@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl7/igt@gem_exec_schedule@submit-golden-slice@rcs0.html * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): - shard-iclb: NOTRUN -> [SKIP][3] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb1/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-mid: - shard-kbl: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl7/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-mid.html #### Warnings #### * igt@kms_dsc@xrgb8888-dsc-compression: - shard-iclb: [SKIP][5] ([i915#3828]) -> [SKIP][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-iclb8/igt@kms_dsc@xrgb8888-dsc-compression.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb5/igt@kms_dsc@xrgb8888-dsc-compression.html New tests --------- New tests have been introduced between CI_DRM_10900_full and IGTPW_6415_full: ### New IGT tests (10) ### * igt@kms_dsc@basic-dsc-enable-xrgb2101010: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-a: - Statuses : 1 pass(s) - Exec time: [1.19] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-b: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-c: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_dsc@basic-dsc-enable-xrgb2101010@edp-1-pipe-d: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_dsc@basic-dsc-enable-xrgb8888: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-a: - Statuses : 1 pass(s) - Exec time: [1.24] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-b: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-c: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_dsc@basic-dsc-enable-xrgb8888@edp-1-pipe-d: - Statuses : 1 pass(s) - Exec time: [1.15] s Known issues ------------ Here are the changes found in IGTPW_6415_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-2x: - shard-iclb: NOTRUN -> [SKIP][7] ([i915#1839]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb7/igt@feature_discovery@display-2x.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglb: NOTRUN -> [SKIP][8] ([fdo#109314]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb6/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@hostile: - shard-snb: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-snb5/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][10] ([i915#280]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_capture@pi@vcs1: - shard-iclb: NOTRUN -> [INCOMPLETE][11] ([i915#3371]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb2/igt@gem_exec_capture@pi@vcs1.html * igt@gem_exec_fair@basic-none@rcs0: - shard-iclb: [PASS][12] -> [FAIL][13] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-iclb7/igt@gem_exec_fair@basic-none@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb7/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-tglb: NOTRUN -> [FAIL][14] ([i915#2842]) +4 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb5/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [PASS][15] -> [FAIL][16] ([i915#2842]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-tglb6/igt@gem_exec_fair@basic-pace@vecs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb8/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_gttfill@all: - shard-glk: [PASS][17] -> [DMESG-WARN][18] ([i915#118]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-glk5/igt@gem_exec_gttfill@all.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-glk8/igt@gem_exec_gttfill@all.html * igt@gem_exec_params@no-bsd: - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#109283]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb1/igt@gem_exec_params@no-bsd.html - shard-iclb: NOTRUN -> [SKIP][20] ([fdo#109283]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb7/igt@gem_exec_params@no-bsd.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#2190]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl6/igt@gem_huc_copy@huc-copy.html - shard-kbl: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#2190]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-iclb: NOTRUN -> [SKIP][23] ([i915#4555]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb8/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglb: NOTRUN -> [SKIP][24] ([i915#4555] / [i915#4565]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_media_vme: - shard-tglb: NOTRUN -> [SKIP][25] ([i915#284]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb7/igt@gem_media_vme.html * igt@gem_pread@exhaustion: - shard-iclb: NOTRUN -> [WARN][26] ([i915#2658]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][27] ([i915#2658]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl7/igt@gem_pwrite@basic-exhaustion.html - shard-tglb: NOTRUN -> [WARN][28] ([i915#2658]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-tglb: NOTRUN -> [SKIP][29] ([i915#4270]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-iclb: NOTRUN -> [SKIP][30] ([i915#768]) +2 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb3/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_userptr_blits@input-checking: - shard-tglb: NOTRUN -> [DMESG-WARN][31] ([i915#3002]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb2/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#3297]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb3/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [FAIL][33] ([i915#3318]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl4/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-tglb: NOTRUN -> [SKIP][34] ([fdo#109289]) +5 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb8/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@basic-rejected: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109289]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb5/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-secure: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#2856]) +2 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb7/igt@gen9_exec_parse@bb-secure.html - shard-iclb: NOTRUN -> [SKIP][37] ([i915#2856]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb8/igt@gen9_exec_parse@bb-secure.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: NOTRUN -> [FAIL][38] ([i915#4275]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb5/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-tglb: NOTRUN -> [SKIP][39] ([fdo#109506] / [i915#2411]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#111644] / [i915#1397] / [i915#2411]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#111614]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb2/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-glk: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#3777]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-glk2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-apl: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3777]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#111615]) +3 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#110723]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#3886]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl4/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: - shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271]) +129 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][48] ([i915#3689] / [i915#3886]) +3 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb8/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][49] ([fdo#111615] / [i915#3689]) +5 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb8/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109278] / [i915#3886]) +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb1/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html - shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3886]) +5 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html - shard-glk: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#3886]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-glk7/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][53] ([i915#3689]) +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_ccs.html * igt@kms_cdclk@plane-scaling: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3742]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb7/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium@hdmi-edid-change-during-suspend: - shard-apl: NOTRUN -> [SKIP][55] ([fdo#109271] / [fdo#111827]) +9 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl4/igt@kms_chamelium@hdmi-edid-change-during-suspend.html * igt@kms_chamelium@vga-hpd-without-ddc: - shard-kbl: NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +4 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl7/igt@kms_chamelium@vga-hpd-without-ddc.html * igt@kms_color_chamelium@pipe-a-ctm-red-to-blue: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109284] / [fdo#111827]) +5 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb6/igt@kms_color_chamelium@pipe-a-ctm-red-to-blue.html - shard-snb: NOTRUN -> [SKIP][58] ([fdo#109271] / [fdo#111827]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-snb6/igt@kms_color_chamelium@pipe-a-ctm-red-to-blue.html * igt@kms_color_chamelium@pipe-b-ctm-limited-range: - shard-tglb: NOTRUN -> [SKIP][59] ([fdo#109284] / [fdo#111827]) +7 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb3/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html * igt@kms_color_chamelium@pipe-d-degamma: - shard-glk: NOTRUN -> [SKIP][60] ([fdo#109271] / [fdo#111827]) +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-glk1/igt@kms_color_chamelium@pipe-d-degamma.html - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109278] / [fdo#109284] / [fdo#111827]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb3/igt@kms_color_chamelium@pipe-d-degamma.html * igt@kms_content_protection@type1: - shard-tglb: NOTRUN -> [SKIP][62] ([fdo#111828]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb8/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109278] / [fdo#109279]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen: - shard-tglb: NOTRUN -> [SKIP][64] ([i915#3319]) +3 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb8/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html * igt@kms_cursor_crc@pipe-b-cursor-max-size-onscreen: - shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271]) +13 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-glk4/igt@kms_cursor_crc@pipe-b-cursor-max-size-onscreen.html * igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][66] ([i915#3359]) +5 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-kbl: [PASS][67] -> [DMESG-WARN][68] ([i915#180]) +4 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-kbl6/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html - shard-tglb: [PASS][69] -> [INCOMPLETE][70] ([i915#2411] / [i915#456]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen: - shard-tglb: NOTRUN -> [SKIP][71] ([fdo#109279] / [i915#3359]) +2 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109274] / [fdo#109278]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: - shard-iclb: NOTRUN -> [SKIP][73] ([i915#3528]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb6/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html * {igt@kms_dsc@basic-dsc-enable-xrgb2101010} (NEW): - shard-kbl: NOTRUN -> [SKIP][74] ([fdo#109271]) +57 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl4/igt@kms_dsc@basic-dsc-enable-xrgb2101010.html * {igt@kms_dsc@basic-dsc-enable-xrgb8888} (NEW): - shard-snb: NOTRUN -> [SKIP][75] ([fdo#109271]) +30 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-snb4/igt@kms_dsc@basic-dsc-enable-xrgb8888.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-iclb: NOTRUN -> [SKIP][76] ([fdo#109274]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-kbl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#2672]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html - shard-apl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2672]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-tglb: NOTRUN -> [SKIP][79] ([fdo#111825]) +26 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-iclb: NOTRUN -> [SKIP][80] ([fdo#109280]) +8 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_hdr@static-swap: - shard-tglb: NOTRUN -> [SKIP][81] ([i915#1187]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb8/igt@kms_hdr@static-swap.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: - shard-apl: NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#533]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl7/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b: - shard-snb: [PASS][83] -> [SKIP][84] ([fdo#109271]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-snb2/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-snb4/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b.html * igt@kms_plane_lowres@pipe-a-tiling-yf: - shard-iclb: NOTRUN -> [SKIP][85] ([i915#3536]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-yf.html * igt@kms_plane_multiple@atomic-pipe-b-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][86] ([fdo#111615] / [fdo#112054]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb1/igt@kms_plane_multiple@atomic-pipe-b-tiling-yf.html * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping: - shard-apl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#2733]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl6/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html * igt@kms_prime@basic-crc@first-to-second: - shard-tglb: NOTRUN -> [SKIP][88] ([i915#1836]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb1/igt@kms_prime@basic-crc@first-to-second.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-tglb: NOTRUN -> [SKIP][89] ([i915#2920]) +4 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb3/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: - shard-kbl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1: - shard-iclb: NOTRUN -> [SKIP][91] ([i915#658]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3: - shard-glk: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#658]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-glk7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3.html - shard-apl: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#658]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: [PASS][94] -> [SKIP][95] ([fdo#109441]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb4/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_psr@psr2_sprite_plane_move: - shard-tglb: NOTRUN -> [FAIL][96] ([i915#132] / [i915#3467]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb3/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_sysfs_edid_timing: - shard-apl: NOTRUN -> [FAIL][97] ([IGT#2]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl4/igt@kms_sysfs_edid_timing.html * igt@kms_tv_load_detect@load-detect: - shard-iclb: NOTRUN -> [SKIP][98] ([fdo#109309]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb6/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-apl: [PASS][99] -> [DMESG-WARN][100] ([i915#180]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-apl2/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-forked: - shard-iclb: NOTRUN -> [SKIP][101] ([fdo#109278]) +10 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb4/igt@kms_vblank@pipe-d-wait-forked.html * igt@kms_writeback@writeback-invalid-parameters: - shard-iclb: NOTRUN -> [SKIP][102] ([i915#2437]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb4/igt@kms_writeback@writeback-invalid-parameters.html * igt@nouveau_crc@pipe-c-source-outp-complete: - shard-tglb: NOTRUN -> [SKIP][103] ([i915#2530]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb3/igt@nouveau_crc@pipe-c-source-outp-complete.html * igt@prime_nv_pcopy@test2: - shard-tglb: NOTRUN -> [SKIP][104] ([fdo#109291]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb1/igt@prime_nv_pcopy@test2.html * igt@prime_vgem@basic-userptr: - shard-iclb: NOTRUN -> [SKIP][105] ([i915#3301]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb5/igt@prime_vgem@basic-userptr.html * igt@sysfs_clients@sema-50: - shard-apl: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#2994]) +2 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl1/igt@sysfs_clients@sema-50.html * igt@sysfs_clients@split-10: - shard-kbl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#2994]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl2/igt@sysfs_clients@split-10.html * igt@tools_test@sysfs_l3_parity: - shard-tglb: NOTRUN -> [SKIP][108] ([fdo#109307]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb6/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_exec_capture@pi@vcs0: - shard-iclb: [INCOMPLETE][109] ([i915#2369]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-iclb4/igt@gem_exec_capture@pi@vcs0.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb2/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][111] ([i915#2846]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-glk2/igt@gem_exec_fair@basic-deadline.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-glk1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-kbl: [FAIL][113] ([i915#2842]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-kbl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-iclb: [FAIL][115] ([i915#2842]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-iclb3/igt@gem_exec_fair@basic-pace@bcs0.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb3/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglb: [FAIL][117] ([i915#2842]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-tglb6/igt@gem_exec_fair@basic-pace@rcs0.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s3: - shard-tglb: [INCOMPLETE][119] ([i915#456]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-tglb7/igt@gem_exec_suspend@basic-s3.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-tglb2/igt@gem_exec_suspend@basic-s3.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][121] ([i915#180]) -> [PASS][122] +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-apl8/igt@gem_workarounds@suspend-resume-context.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-apl8/igt@gem_workarounds@suspend-resume-context.html - shard-kbl: [DMESG-WARN][123] ([i915#180]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-kbl1/igt@gem_workarounds@suspend-resume-context.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-kbl1/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][125] ([i915#454]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10900/shard-iclb6/igt@i915_pm_dc@dc6-psr.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/shard-iclb8/igt@i915_pm_dc@dc6-psr.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-glk: [DMESG-WARN][127] ([i915#118]) -> [PASS][128] [127]: https://intel-gfx-ci.01.or == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6415/index.html [-- Attachment #2: Type: text/html, Size: 34126 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2021-11-29 4:58 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-11-18 11:17 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_dsc: Add a new subtest to validate 10bpc format venkata.sai.patnana 2021-11-18 11:17 ` [igt-dev] [PATCH i-g-t 1/2] " venkata.sai.patnana 2021-11-18 11:17 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add kms_dsc tests to fast-feedback venkata.sai.patnana 2021-11-18 13:39 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/kms_dsc: Add a new subtest to validate 10bpc format Patchwork 2021-11-23 10:29 ` Patnana, Venkata Sai 2021-11-23 17:14 ` Vudum, Lakshminarayana 2021-11-29 4:57 ` Patnana, Venkata Sai 2021-11-23 17:10 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2021-11-23 18:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.