* [igt-dev] [PATCH i-g-t] tests/kms_content_protection: Add a test for HDCP-MST with suspend resume
@ 2022-10-28 16:07 Jeevan B
2022-10-28 16:46 ` Ville Syrjälä
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jeevan B @ 2022-10-28 16:07 UTC (permalink / raw)
To: igt-dev; +Cc: suraj.kandpal
adding new test to validate HDCP-MST with suspend resume
test check for valid output which supports MST and HDCP
then commits and check if the content protection is enabled
before and after suspend-resume.
v2: Change type-0 to type-1, try to authenticate hdcp few more times
as suggested. (Suraj)
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/kms_content_protection.c | 94 +++++++++++++++++++++++++++++++++-
1 file changed, 93 insertions(+), 1 deletion(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index aa28b7bf..53f50115 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -48,6 +48,7 @@ struct data {
#define CP_MEI_RELOAD (1 << 2)
#define CP_TYPE_CHANGE (1 << 3)
#define CP_UEVENT (1 << 4)
+#define SUSPEND_RESUME (1 << 5)
#define CP_UNDESIRED 0
#define CP_DESIRED 1
@@ -686,6 +687,89 @@ test_content_protection_mst(int content_type)
test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 1);
}
+static void
+test_content_protection_mst_suspend_resume(int content_type)
+{
+ igt_display_t *display = &data.display;
+ igt_output_t *output;
+ int valid_outputs = 0, dp_mst_outputs = 0, ret, count, max_pipe = 0;
+ enum pipe pipe;
+ igt_output_t *mst_output[IGT_MAX_PIPES], *hdcp_mst_output[IGT_MAX_PIPES];
+
+ for_each_pipe(display, pipe)
+ max_pipe++;
+
+ pipe = PIPE_A;
+
+ for_each_connected_output(display, output) {
+ if (!output_is_dp_mst(output, dp_mst_outputs))
+ continue;
+
+ igt_assert_f(igt_pipe_connector_valid(pipe, output), "Output-pipe combination invalid\n");
+
+ igt_output_set_pipe(output, pipe);
+ prepare_modeset_on_mst_output(output);
+ mst_output[dp_mst_outputs++] = output;
+
+ pipe++;
+
+ if (pipe >= max_pipe)
+ break;
+ }
+
+ igt_require_f(dp_mst_outputs > 1, "No DP MST set up with >= 2 outputs found in a single topology\n");
+
+ if (igt_display_try_commit_atomic(display,
+ DRM_MODE_ATOMIC_TEST_ONLY |
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL) != 0) {
+ bool found = igt_override_all_active_output_modes_to_fit_bw(display);
+ igt_require_f(found, "No valid mode combo found for MST modeset\n");
+
+ for (count = 0; count < dp_mst_outputs; count++)
+ prepare_modeset_on_mst_output(mst_output[count]);
+ }
+
+ ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
+ igt_require_f(ret == 0, "Commit failure during MST modeset\n");
+
+ for (count = 0; count < dp_mst_outputs; count++) {
+ if (!output_hdcp_capable(mst_output[count], content_type))
+ continue;
+
+ hdcp_mst_output[valid_outputs++] = mst_output[count];
+ }
+
+ igt_require_f(valid_outputs > 1, "DP MST outputs do not have the required HDCP support\n");
+
+ for (count = 0; count < valid_outputs; count++) {
+ igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED);
+
+ if (output->props[IGT_CONNECTOR_HDCP_CONTENT_TYPE])
+ igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_HDCP_CONTENT_TYPE, content_type);
+ }
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ for (count = 0; count < valid_outputs; count++) {
+ ret = igt_wait(wait_for_prop_value(hdcp_mst_output[count],
+ CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC),
+ 1000, 100);
+ igt_assert_f(ret, "Content Protection not enabled on %s\n", hdcp_mst_output[count]->name);
+ }
+
+ igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE);
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ for (count = 0; count < valid_outputs; count++) {
+ ret = igt_wait(wait_for_prop_value(hdcp_mst_output[count],
+ CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC),
+ 1000, 100);
+ igt_assert_f(ret, "Content Protection not enabled on %s\n", hdcp_mst_output[count]->name);
+ }
+}
+
static void test_content_protection_cleanup(void)
{
igt_display_t *display = &data.display;
@@ -817,6 +901,11 @@ static const struct {
.cp_tests = CP_LIC,
.content_type = HDCP_CONTENT_TYPE_1,
},
+ { .desc = "Test Content protection(Type 1) over DP MST with suspend resume.",
+ .name = "dp-mst-suspend_resume",
+ .cp_tests = SUSPEND_RESUME,
+ .content_type = HDCP_CONTENT_TYPE_1,
+ },
};
igt_main
@@ -866,7 +955,10 @@ igt_main
igt_subtest(mst_subtests[i].name) {
data.cp_tests = mst_subtests[i].cp_tests;
- test_content_protection_mst(mst_subtests[i].content_type);
+ if (data.cp_tests == SUSPEND_RESUME)
+ test_content_protection_mst_suspend_resume(mst_subtests[i].content_type);
+ else
+ test_content_protection_mst(mst_subtests[i].content_type);
}
}
}
--
2.36.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_content_protection: Add a test for HDCP-MST with suspend resume 2022-10-28 16:07 [igt-dev] [PATCH i-g-t] tests/kms_content_protection: Add a test for HDCP-MST with suspend resume Jeevan B @ 2022-10-28 16:46 ` Ville Syrjälä 2022-10-28 17:26 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-10-29 9:40 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Ville Syrjälä @ 2022-10-28 16:46 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev, suraj.kandpal On Fri, Oct 28, 2022 at 09:37:39PM +0530, Jeevan B wrote: > adding new test to validate HDCP-MST with suspend resume > test check for valid output which supports MST and HDCP > then commits and check if the content protection is enabled > before and after suspend-resume. The MST HDCP code looks still totally broken [1]. Is someone actually going to fix it some day? [] https://lists.freedesktop.org/archives/intel-gfx/2021-October/279457.html > > v2: Change type-0 to type-1, try to authenticate hdcp few more times > as suggested. (Suraj) > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_content_protection.c | 94 +++++++++++++++++++++++++++++++++- > 1 file changed, 93 insertions(+), 1 deletion(-) > > diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c > index aa28b7bf..53f50115 100644 > --- a/tests/kms_content_protection.c > +++ b/tests/kms_content_protection.c > @@ -48,6 +48,7 @@ struct data { > #define CP_MEI_RELOAD (1 << 2) > #define CP_TYPE_CHANGE (1 << 3) > #define CP_UEVENT (1 << 4) > +#define SUSPEND_RESUME (1 << 5) > > #define CP_UNDESIRED 0 > #define CP_DESIRED 1 > @@ -686,6 +687,89 @@ test_content_protection_mst(int content_type) > test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 1); > } > > +static void > +test_content_protection_mst_suspend_resume(int content_type) > +{ > + igt_display_t *display = &data.display; > + igt_output_t *output; > + int valid_outputs = 0, dp_mst_outputs = 0, ret, count, max_pipe = 0; > + enum pipe pipe; > + igt_output_t *mst_output[IGT_MAX_PIPES], *hdcp_mst_output[IGT_MAX_PIPES]; > + > + for_each_pipe(display, pipe) > + max_pipe++; > + > + pipe = PIPE_A; > + > + for_each_connected_output(display, output) { > + if (!output_is_dp_mst(output, dp_mst_outputs)) > + continue; > + > + igt_assert_f(igt_pipe_connector_valid(pipe, output), "Output-pipe combination invalid\n"); > + > + igt_output_set_pipe(output, pipe); > + prepare_modeset_on_mst_output(output); > + mst_output[dp_mst_outputs++] = output; > + > + pipe++; > + > + if (pipe >= max_pipe) > + break; > + } > + > + igt_require_f(dp_mst_outputs > 1, "No DP MST set up with >= 2 outputs found in a single topology\n"); > + > + if (igt_display_try_commit_atomic(display, > + DRM_MODE_ATOMIC_TEST_ONLY | > + DRM_MODE_ATOMIC_ALLOW_MODESET, > + NULL) != 0) { > + bool found = igt_override_all_active_output_modes_to_fit_bw(display); > + igt_require_f(found, "No valid mode combo found for MST modeset\n"); > + > + for (count = 0; count < dp_mst_outputs; count++) > + prepare_modeset_on_mst_output(mst_output[count]); > + } > + > + ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > + igt_require_f(ret == 0, "Commit failure during MST modeset\n"); > + > + for (count = 0; count < dp_mst_outputs; count++) { > + if (!output_hdcp_capable(mst_output[count], content_type)) > + continue; > + > + hdcp_mst_output[valid_outputs++] = mst_output[count]; > + } > + > + igt_require_f(valid_outputs > 1, "DP MST outputs do not have the required HDCP support\n"); > + > + for (count = 0; count < valid_outputs; count++) { > + igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); > + > + if (output->props[IGT_CONNECTOR_HDCP_CONTENT_TYPE]) > + igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_HDCP_CONTENT_TYPE, content_type); > + } > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + for (count = 0; count < valid_outputs; count++) { > + ret = igt_wait(wait_for_prop_value(hdcp_mst_output[count], > + CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC), > + 1000, 100); > + igt_assert_f(ret, "Content Protection not enabled on %s\n", hdcp_mst_output[count]->name); > + } > + > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + for (count = 0; count < valid_outputs; count++) { > + ret = igt_wait(wait_for_prop_value(hdcp_mst_output[count], > + CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC), > + 1000, 100); > + igt_assert_f(ret, "Content Protection not enabled on %s\n", hdcp_mst_output[count]->name); > + } > +} > + > static void test_content_protection_cleanup(void) > { > igt_display_t *display = &data.display; > @@ -817,6 +901,11 @@ static const struct { > .cp_tests = CP_LIC, > .content_type = HDCP_CONTENT_TYPE_1, > }, > + { .desc = "Test Content protection(Type 1) over DP MST with suspend resume.", > + .name = "dp-mst-suspend_resume", > + .cp_tests = SUSPEND_RESUME, > + .content_type = HDCP_CONTENT_TYPE_1, > + }, > }; > > igt_main > @@ -866,7 +955,10 @@ igt_main > > igt_subtest(mst_subtests[i].name) { > data.cp_tests = mst_subtests[i].cp_tests; > - test_content_protection_mst(mst_subtests[i].content_type); > + if (data.cp_tests == SUSPEND_RESUME) > + test_content_protection_mst_suspend_resume(mst_subtests[i].content_type); > + else > + test_content_protection_mst(mst_subtests[i].content_type); > } > } > } > -- > 2.36.0 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_content_protection: Add a test for HDCP-MST with suspend resume 2022-10-28 16:07 [igt-dev] [PATCH i-g-t] tests/kms_content_protection: Add a test for HDCP-MST with suspend resume Jeevan B 2022-10-28 16:46 ` Ville Syrjälä @ 2022-10-28 17:26 ` Patchwork 2022-10-29 9:40 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2022-10-28 17:26 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7439 bytes --] == Series Details == Series: tests/kms_content_protection: Add a test for HDCP-MST with suspend resume URL : https://patchwork.freedesktop.org/series/110262/ State : success == Summary == CI Bug Log - changes from CI_DRM_12317 -> IGTPW_8009 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/index.html Participating hosts (40 -> 41) ------------------------------ Additional (2): fi-kbl-x1275 fi-pnv-d510 Missing (1): fi-ctg-p8600 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8009: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@migrate: - {bat-rplp-1}: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/bat-rplp-1/igt@i915_selftest@live@migrate.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/bat-rplp-1/igt@i915_selftest@live@migrate.html Known issues ------------ Here are the changes found in IGTPW_8009 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - fi-rkl-11600: NOTRUN -> [INCOMPLETE][3] ([i915#6179] / [i915#7299]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_huc_copy@huc-copy: - fi-kbl-x1275: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-kbl-x1275/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random: - fi-kbl-x1275: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-kbl-x1275/igt@gem_lmem_swapping@verify-random.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-ilk-650: NOTRUN -> [SKIP][6] ([fdo#109271]) +19 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-ilk-650/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][7] -> [DMESG-FAIL][8] ([i915#5334]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [PASS][9] -> [INCOMPLETE][10] ([i915#4785]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - fi-icl-u2: NOTRUN -> [DMESG-FAIL][11] ([i915#4890]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-icl-u2/igt@i915_selftest@live@requests.html * igt@kms_chamelium@dp-hpd-fast: - fi-ilk-650: NOTRUN -> [SKIP][12] ([fdo#109271] / [fdo#111827]) +8 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-ilk-650/igt@kms_chamelium@dp-hpd-fast.html - fi-kbl-x1275: NOTRUN -> [SKIP][13] ([fdo#109271] / [fdo#111827]) +8 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-kbl-x1275/igt@kms_chamelium@dp-hpd-fast.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][14] ([fdo#109271]) +43 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@prime_vgem@basic-userptr: - fi-kbl-x1275: NOTRUN -> [SKIP][15] ([fdo#109271]) +11 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-kbl-x1275/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - fi-hsw-4770: NOTRUN -> [FAIL][16] ([fdo#109271] / [i915#4312] / [i915#5594]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-hsw-4770/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@gt_pm: - fi-icl-u2: [DMESG-FAIL][17] ([i915#4890]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/fi-icl-u2/igt@i915_selftest@live@gt_pm.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-icl-u2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@migrate: - {bat-dg2-11}: [DMESG-WARN][19] -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/bat-dg2-11/igt@i915_selftest@live@migrate.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/bat-dg2-11/igt@i915_selftest@live@migrate.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: [INCOMPLETE][21] ([i915#4817]) -> [FAIL][22] ([fdo#103375]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4890]: https://gitlab.freedesktop.org/drm/intel/issues/4890 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5537]: https://gitlab.freedesktop.org/drm/intel/issues/5537 [i915#5594]: https://gitlab.freedesktop.org/drm/intel/issues/5594 [i915#5828]: https://gitlab.freedesktop.org/drm/intel/issues/5828 [i915#6179]: https://gitlab.freedesktop.org/drm/intel/issues/6179 [i915#7299]: https://gitlab.freedesktop.org/drm/intel/issues/7299 [i915#7346]: https://gitlab.freedesktop.org/drm/intel/issues/7346 [i915#7348]: https://gitlab.freedesktop.org/drm/intel/issues/7348 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7029 -> IGTPW_8009 CI-20190529: 20190529 CI_DRM_12317: 0f9cbc285f7d3d1860f7f903663933f33ff9ae25 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8009: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/index.html IGT_7029: c32cb1e614017f14274d335ac571383799e6c786 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_content_protection@dp-mst-suspend_resume == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/index.html [-- Attachment #2: Type: text/html, Size: 8480 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_content_protection: Add a test for HDCP-MST with suspend resume 2022-10-28 16:07 [igt-dev] [PATCH i-g-t] tests/kms_content_protection: Add a test for HDCP-MST with suspend resume Jeevan B 2022-10-28 16:46 ` Ville Syrjälä 2022-10-28 17:26 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2022-10-29 9:40 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2022-10-29 9:40 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 43249 bytes --] == Series Details == Series: tests/kms_content_protection: Add a test for HDCP-MST with suspend resume URL : https://patchwork.freedesktop.org/series/110262/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12317_full -> IGTPW_8009_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8009_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8009_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_8009/index.html Participating hosts (8 -> 8) ------------------------------ Additional (2): shard-rkl shard-dg1 Missing (2): pig-skl-6260u pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8009_full: ### IGT changes ### #### Possible regressions #### * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-tglb7/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * {igt@kms_content_protection@dp-mst-suspend_resume} (NEW): - shard-tglb: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb2/igt@kms_content_protection@dp-mst-suspend_resume.html - shard-iclb: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb7/igt@kms_content_protection@dp-mst-suspend_resume.html - {shard-dg1}: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-dg1-12/igt@kms_content_protection@dp-mst-suspend_resume.html * igt@testdisplay: - shard-apl: [PASS][6] -> [TIMEOUT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl3/igt@testdisplay.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl7/igt@testdisplay.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_pread@exhaustion: - {shard-rkl}: NOTRUN -> [INCOMPLETE][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-rkl-5/igt@gem_pread@exhaustion.html New tests --------- New tests have been introduced between CI_DRM_12317_full and IGTPW_8009_full: ### New IGT tests (1) ### * igt@kms_content_protection@dp-mst-suspend_resume: - Statuses : 7 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_8009_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-3x: - shard-iclb: NOTRUN -> [SKIP][9] ([i915#1839]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb5/igt@feature_discovery@display-3x.html * igt@gem_ccs@block-copy-compressed: - shard-tglb: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#5325]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb6/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@create-massive: - shard-snb: NOTRUN -> [DMESG-WARN][11] ([i915#4991]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-snb4/igt@gem_create@create-massive.html - shard-glk: NOTRUN -> [DMESG-WARN][12] ([i915#4991]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk8/igt@gem_create@create-massive.html - shard-iclb: NOTRUN -> [DMESG-WARN][13] ([i915#4991]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb3/igt@gem_create@create-massive.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#1099]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-snb6/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][15] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_params@no-vebox: - shard-tglb: NOTRUN -> [SKIP][16] ([fdo#109283] / [i915#4877]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb8/igt@gem_exec_params@no-vebox.html - shard-iclb: NOTRUN -> [SKIP][17] ([fdo#109283]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@gem_exec_params@no-vebox.html * igt@gem_exec_params@secure-non-root: - shard-iclb: NOTRUN -> [SKIP][18] ([fdo#112283]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb3/igt@gem_exec_params@secure-non-root.html - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#112283]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb5/igt@gem_exec_params@secure-non-root.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-apl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random: - shard-tglb: NOTRUN -> [SKIP][21] ([i915#4613]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb7/igt@gem_lmem_swapping@random.html - shard-glk: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#4613]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk8/igt@gem_lmem_swapping@random.html - shard-iclb: NOTRUN -> [SKIP][23] ([i915#4613]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb8/igt@gem_lmem_swapping@random.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglb: NOTRUN -> [SKIP][24] ([i915#4270]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb8/igt@gem_pxp@fail-invalid-protected-context.html - shard-iclb: NOTRUN -> [SKIP][25] ([i915#4270]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb3/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][26] ([i915#768]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-tglb: NOTRUN -> [SKIP][27] ([fdo#109312]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb5/igt@gem_softpin@evict-snoop.html - shard-iclb: NOTRUN -> [SKIP][28] ([fdo#109312]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb3/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@unsync-overlap: - shard-iclb: NOTRUN -> [SKIP][29] ([i915#3297]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb7/igt@gem_userptr_blits@unsync-overlap.html - shard-tglb: NOTRUN -> [SKIP][30] ([i915#3297]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb2/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][31] -> [DMESG-WARN][32] ([i915#5566] / [i915#716]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-glk1/igt@gen9_exec_parse@allowed-single.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-far: - shard-iclb: NOTRUN -> [SKIP][33] ([i915#2856]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-tglb: NOTRUN -> [SKIP][34] ([i915#2527] / [i915#2856]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb7/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@resize-bar: - shard-iclb: NOTRUN -> [SKIP][35] ([i915#6412]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@i915_module_load@resize-bar.html - shard-tglb: NOTRUN -> [SKIP][36] ([i915#6412]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb5/igt@i915_module_load@resize-bar.html * igt@i915_pm_dc@dc6-psr: - shard-tglb: NOTRUN -> [FAIL][37] ([i915#3989] / [i915#454]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb8/igt@i915_pm_dc@dc6-psr.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3826]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-iclb: NOTRUN -> [SKIP][39] ([i915#3826]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#404]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][41] ([i915#5286]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][42] ([i915#5286]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#110725] / [fdo#111614]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#111615]) +3 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb2/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#110723]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109278] / [i915#3886]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb3/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-bad-pixel-format-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#111615] / [i915#3689]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb2/igt@kms_ccs@pipe-a-bad-pixel-format-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-apl: NOTRUN -> [SKIP][48] ([fdo#109271]) +126 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html - shard-tglb: NOTRUN -> [SKIP][49] ([i915#3689] / [i915#6095]) +4 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3886]) +6 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl8/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html - shard-tglb: NOTRUN -> [SKIP][51] ([i915#3689] / [i915#3886]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb5/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#3886]) +4 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk1/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109278]) +17 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3689]) +4 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb2/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][55] ([i915#6095]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb7/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_color_chamelium@ctm-0-50: - shard-apl: NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +8 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl6/igt@kms_color_chamelium@ctm-0-50.html - shard-snb: NOTRUN -> [SKIP][57] ([fdo#109271] / [fdo#111827]) +4 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-snb6/igt@kms_color_chamelium@ctm-0-50.html - shard-tglb: NOTRUN -> [SKIP][58] ([fdo#109284] / [fdo#111827]) +6 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb1/igt@kms_color_chamelium@ctm-0-50.html - shard-glk: NOTRUN -> [SKIP][59] ([fdo#109271] / [fdo#111827]) +6 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk7/igt@kms_color_chamelium@ctm-0-50.html * igt@kms_color_chamelium@ctm-negative: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109284] / [fdo#111827]) +6 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb7/igt@kms_color_chamelium@ctm-negative.html * {igt@kms_content_protection@dp-mst-suspend_resume} (NEW): - {shard-rkl}: NOTRUN -> [SKIP][61] ([i915#4098]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-rkl-4/igt@kms_content_protection@dp-mst-suspend_resume.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglb: NOTRUN -> [SKIP][62] ([i915#3116] / [i915#3299]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb7/igt@kms_content_protection@dp-mst-type-0.html - shard-iclb: NOTRUN -> [SKIP][63] ([i915#3116]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglb: NOTRUN -> [SKIP][64] ([i915#3359]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-snb: NOTRUN -> [SKIP][65] ([fdo#109271]) +115 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-snb7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_legacy@cursorb-vs-flipb@atomic: - shard-tglb: NOTRUN -> [SKIP][66] ([fdo#109274] / [fdo#111825]) +6 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb5/igt@kms_cursor_legacy@cursorb-vs-flipb@atomic.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109274]) +8 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][68] -> [FAIL][69] ([i915#2122]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb3/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][71] ([i915#2587] / [i915#2672]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html - shard-tglb: NOTRUN -> [SKIP][72] ([i915#2587] / [i915#2672]) +2 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][73] ([i915#2672]) +5 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][74] ([i915#2672] / [i915#3555]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-tglb: NOTRUN -> [SKIP][75] ([fdo#109280] / [fdo#111825]) +20 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-tglb: NOTRUN -> [SKIP][76] ([i915#6497]) +4 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109280]) +21 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-glk: NOTRUN -> [SKIP][78] ([fdo#109271]) +80 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk5/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglb: NOTRUN -> [SKIP][79] ([i915#3555]) +6 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb8/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglb: NOTRUN -> [SKIP][80] ([i915#1839]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109289]) +2 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb3/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-b-dp-1: - shard-apl: NOTRUN -> [FAIL][82] ([i915#4573]) +2 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-b-dp-1.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][83] ([i915#3536]) +2 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb3/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-tglb: NOTRUN -> [SKIP][84] ([i915#3536]) +3 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb8/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-tglb: NOTRUN -> [SKIP][85] ([fdo#112054] / [i915#5288]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1: - shard-iclb: [PASS][86] -> [SKIP][87] ([i915#5235]) +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-iclb6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html - shard-tglb: NOTRUN -> [SKIP][89] ([i915#2920]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html - shard-glk: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html - shard-iclb: NOTRUN -> [SKIP][91] ([fdo#111068] / [i915#658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-tglb: NOTRUN -> [FAIL][92] ([i915#132] / [i915#3467]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb7/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][93] -> [SKIP][94] ([fdo#109441]) +3 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb7/igt@kms_psr@psr2_no_drrs.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: NOTRUN -> [SKIP][95] ([fdo#109441]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglb: NOTRUN -> [SKIP][96] ([fdo#111615] / [i915#5289]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-glk: [PASS][97] -> [FAIL][98] ([i915#5852]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-glk6/igt@kms_rotation_crc@sprite-rotation-180.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk6/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-iclb: NOTRUN -> [SKIP][99] ([i915#3555]) +6 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb3/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@perf@gen12-mi-rpc: - shard-iclb: NOTRUN -> [SKIP][100] ([fdo#109289]) +2 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb7/igt@perf@gen12-mi-rpc.html * igt@sysfs_clients@fair-7: - shard-tglb: NOTRUN -> [SKIP][101] ([i915#2994]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb6/igt@sysfs_clients@fair-7.html - shard-glk: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2994]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk3/igt@sysfs_clients@fair-7.html * igt@sysfs_clients@sema-50: - shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2994]) +3 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl7/igt@sysfs_clients@sema-50.html * igt@sysfs_clients@split-10: - shard-iclb: NOTRUN -> [SKIP][104] ([i915#2994]) +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb3/igt@sysfs_clients@split-10.html #### Possible fixes #### * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-iclb: [SKIP][105] ([i915#4525]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][107] ([i915#2842]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][109] ([i915#2842]) -> [PASS][110] +2 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_suspend@basic-s3@smem: - shard-apl: [DMESG-WARN][111] ([i915#180]) -> [PASS][112] +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl6/igt@gem_exec_suspend@basic-s3@smem.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl1/igt@gem_exec_suspend@basic-s3@smem.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: [SKIP][113] ([fdo#109441]) -> [PASS][114] +2 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-iclb7/igt@kms_psr@psr2_cursor_blt.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html #### Warnings #### * igt@gem_pread@exhaustion: - shard-glk: [WARN][115] ([i915#2658]) -> [INCOMPLETE][116] ([i915#7248]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-glk9/igt@gem_pread@exhaustion.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-glk6/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-tglb: [WARN][117] ([i915#2658]) -> [INCOMPLETE][118] ([i915#7248]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-tglb7/igt@gem_pwrite@basic-exhaustion.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-tglb2/igt@gem_pwrite@basic-exhaustion.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [FAIL][119] ([i915#4275]) -> [SKIP][120] ([fdo#109271]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl8/igt@i915_pm_dc@dc9-dpms.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl2/igt@i915_pm_dc@dc9-dpms.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][121] ([i915#2920]) -> [SKIP][122] ([i915#658]) +1 similar issue [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-iclb: [SKIP][123] ([i915#2920]) -> [SKIP][124] ([fdo#111068] / [i915#658]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-iclb: [SKIP][125] ([fdo#111068] / [i915#658]) -> [SKIP][126] ([i915#2920]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-iclb3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133]) ([i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139]) ([i915#3002] / [i915#4312]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl6/igt@runner@aborted.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl2/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl2/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl7/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl8/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl2/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12317/shard-apl6/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl3/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl2/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl6/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl8/igt@runner@aborted.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl1/igt@runner@aborted.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/shard-apl6/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5852]: https://gitlab.freedesktop.org/drm/intel/issues/5852 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6463]: https://gitlab.freedesktop.org/drm/intel/issues/6463 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7316]: https://gitlab.freedesktop.org/drm/intel/issues/7316 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7029 -> IGTPW_8009 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12317: 0f9cbc285f7d3d1860f7f903663933f33ff9ae25 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8009: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/index.html IGT_7029: c32cb1e614017f14274d335ac571383799e6c786 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8009/index.html [-- Attachment #2: Type: text/html, Size: 45658 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-10-29 9:40 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-10-28 16:07 [igt-dev] [PATCH i-g-t] tests/kms_content_protection: Add a test for HDCP-MST with suspend resume Jeevan B 2022-10-28 16:46 ` Ville Syrjälä 2022-10-28 17:26 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-10-29 9:40 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox