* [igt-dev] [PATCH i-g-t] kms_content_protection: Set CP prop to UNDESIRED at igt exit
@ 2019-09-26 4:31 Anshuman Gupta
2019-09-26 5:01 ` Ramalingam C
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Anshuman Gupta @ 2019-09-26 4:31 UTC (permalink / raw)
To: igt-dev
We require to clear HDCP state to UNDESIRED at igt exit on
every success/failure in order to avoid any HDCP operations in
subsequent IGT tests.
v2: commit message change.
Cc: Ramalingam C <ramalingam.c@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
tests/kms_content_protection.c | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index e676b60b..fce4b591 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -617,6 +617,26 @@ test_content_protection(enum igt_commit_style s, int content_type)
igt_require_f(valid_tests, "No connector found with HDCP capability\n");
}
+static void test_content_protection_cleanup(void)
+{
+ igt_display_t *display = &data.display;
+ igt_output_t *output;
+ uint64_t val;
+
+ for_each_connected_output(display, output) {
+ if (!output->props[IGT_CONNECTOR_CONTENT_PROTECTION])
+ continue;
+
+ val = igt_output_get_prop(output,
+ IGT_CONNECTOR_CONTENT_PROTECTION);
+ if (val == CP_UNDESIRED)
+ continue;
+
+ igt_info("CP Prop being UNDESIRED on %s\n", output->name);
+ test_cp_disable(output, COMMIT_ATOMIC);
+ }
+}
+
igt_main
{
igt_fixture {
@@ -692,6 +712,8 @@ igt_main
test_content_protection(COMMIT_ATOMIC, HDCP_CONTENT_TYPE_0);
}
- igt_fixture
+ igt_fixture {
+ test_content_protection_cleanup();
igt_display_fini(&data.display);
+ }
}
--
2.21.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [igt-dev] [PATCH i-g-t] kms_content_protection: Set CP prop to UNDESIRED at igt exit 2019-09-26 4:31 [igt-dev] [PATCH i-g-t] kms_content_protection: Set CP prop to UNDESIRED at igt exit Anshuman Gupta @ 2019-09-26 5:01 ` Ramalingam C 2019-10-09 18:35 ` Ramalingam C 2019-09-26 5:25 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Ramalingam C @ 2019-09-26 5:01 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev On 2019-09-26 at 10:01:29 +0530, Anshuman Gupta wrote: > We require to clear HDCP state to UNDESIRED at igt exit on > every success/failure in order to avoid any HDCP operations in > subsequent IGT tests. > > v2: commit message change. Look good to me. Reviewed-by: Ramalingam C <ramalingam.c@intel.com> -Ram > > Cc: Ramalingam C <ramalingam.c@intel.com> > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/kms_content_protection.c | 24 +++++++++++++++++++++++- > 1 file changed, 23 insertions(+), 1 deletion(-) > > diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c > index e676b60b..fce4b591 100644 > --- a/tests/kms_content_protection.c > +++ b/tests/kms_content_protection.c > @@ -617,6 +617,26 @@ test_content_protection(enum igt_commit_style s, int content_type) > igt_require_f(valid_tests, "No connector found with HDCP capability\n"); > } > > +static void test_content_protection_cleanup(void) > +{ > + igt_display_t *display = &data.display; > + igt_output_t *output; > + uint64_t val; > + > + for_each_connected_output(display, output) { > + if (!output->props[IGT_CONNECTOR_CONTENT_PROTECTION]) > + continue; > + > + val = igt_output_get_prop(output, > + IGT_CONNECTOR_CONTENT_PROTECTION); > + if (val == CP_UNDESIRED) > + continue; > + > + igt_info("CP Prop being UNDESIRED on %s\n", output->name); > + test_cp_disable(output, COMMIT_ATOMIC); > + } > +} > + > igt_main > { > igt_fixture { > @@ -692,6 +712,8 @@ igt_main > test_content_protection(COMMIT_ATOMIC, HDCP_CONTENT_TYPE_0); > } > > - igt_fixture > + igt_fixture { > + test_content_protection_cleanup(); > igt_display_fini(&data.display); > + } > } > -- > 2.21.0 > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] kms_content_protection: Set CP prop to UNDESIRED at igt exit 2019-09-26 5:01 ` Ramalingam C @ 2019-10-09 18:35 ` Ramalingam C 0 siblings, 0 replies; 9+ messages in thread From: Ramalingam C @ 2019-10-09 18:35 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev On 2019-09-26 at 10:31:10 +0530, Ramalingam C wrote: > On 2019-09-26 at 10:01:29 +0530, Anshuman Gupta wrote: > > We require to clear HDCP state to UNDESIRED at igt exit on > > every success/failure in order to avoid any HDCP operations in > > subsequent IGT tests. > > > > v2: commit message change. > Look good to me. > > Reviewed-by: Ramalingam C <ramalingam.c@intel.com> Thanks for the patch Anshuman. Now it is merged. -Ram > > -Ram > > > > Cc: Ramalingam C <ramalingam.c@intel.com> > > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> > > --- > > tests/kms_content_protection.c | 24 +++++++++++++++++++++++- > > 1 file changed, 23 insertions(+), 1 deletion(-) > > > > diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c > > index e676b60b..fce4b591 100644 > > --- a/tests/kms_content_protection.c > > +++ b/tests/kms_content_protection.c > > @@ -617,6 +617,26 @@ test_content_protection(enum igt_commit_style s, int content_type) > > igt_require_f(valid_tests, "No connector found with HDCP capability\n"); > > } > > > > +static void test_content_protection_cleanup(void) > > +{ > > + igt_display_t *display = &data.display; > > + igt_output_t *output; > > + uint64_t val; > > + > > + for_each_connected_output(display, output) { > > + if (!output->props[IGT_CONNECTOR_CONTENT_PROTECTION]) > > + continue; > > + > > + val = igt_output_get_prop(output, > > + IGT_CONNECTOR_CONTENT_PROTECTION); > > + if (val == CP_UNDESIRED) > > + continue; > > + > > + igt_info("CP Prop being UNDESIRED on %s\n", output->name); > > + test_cp_disable(output, COMMIT_ATOMIC); > > + } > > +} > > + > > igt_main > > { > > igt_fixture { > > @@ -692,6 +712,8 @@ igt_main > > test_content_protection(COMMIT_ATOMIC, HDCP_CONTENT_TYPE_0); > > } > > > > - igt_fixture > > + igt_fixture { > > + test_content_protection_cleanup(); > > igt_display_fini(&data.display); > > + } > > } > > -- > > 2.21.0 > > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for kms_content_protection: Set CP prop to UNDESIRED at igt exit 2019-09-26 4:31 [igt-dev] [PATCH i-g-t] kms_content_protection: Set CP prop to UNDESIRED at igt exit Anshuman Gupta 2019-09-26 5:01 ` Ramalingam C @ 2019-09-26 5:25 ` Patchwork 2019-09-27 1:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2019-09-26 5:25 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: kms_content_protection: Set CP prop to UNDESIRED at igt exit URL : https://patchwork.freedesktop.org/series/67257/ State : success == Summary == CI Bug Log - changes from CI_DRM_6963 -> IGTPW_3502 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/67257/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3502 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3: - fi-blb-e6850: [PASS][1] -> [INCOMPLETE][2] ([fdo#107718]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html #### Possible fixes #### * igt@i915_selftest@live_gtt: - {fi-tgl-u2}: [INCOMPLETE][3] -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/fi-tgl-u2/igt@i915_selftest@live_gtt.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/fi-tgl-u2/igt@i915_selftest@live_gtt.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [FAIL][5] ([fdo#109483]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html #### Warnings #### * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][7] ([fdo#111045] / [fdo#111096]) -> [FAIL][8] ([fdo#111407]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483 [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600 Participating hosts (50 -> 42) ------------------------------ Additional (1): fi-kbl-soraka Missing (9): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-gdg-551 fi-pnv-d510 fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5203 -> IGTPW_3502 CI-20190529: 20190529 CI_DRM_6963: 364bf33c246115063174fa2a07e9f5a6bddc9f72 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3502: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/ IGT_5203: 82326332f7af336d390e00ae87187bc207fd33dd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for kms_content_protection: Set CP prop to UNDESIRED at igt exit 2019-09-26 4:31 [igt-dev] [PATCH i-g-t] kms_content_protection: Set CP prop to UNDESIRED at igt exit Anshuman Gupta 2019-09-26 5:01 ` Ramalingam C 2019-09-26 5:25 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-09-27 1:54 ` Patchwork 2019-10-07 11:10 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) Patchwork 2019-10-07 12:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2019-09-27 1:54 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: kms_content_protection: Set CP prop to UNDESIRED at igt exit URL : https://patchwork.freedesktop.org/series/67257/ State : failure == Summary == CI Bug Log - changes from CI_DRM_6963_full -> IGTPW_3502_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_3502_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_3502_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://patchwork.freedesktop.org/api/1.0/series/67257/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3502_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@perf_pmu@semaphore-busy-bcs0}: - shard-kbl: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-kbl4/igt@perf_pmu@semaphore-busy-bcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-kbl2/igt@perf_pmu@semaphore-busy-bcs0.html Known issues ------------ Here are the changes found in IGTPW_3502_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_shared@q-promotion-bsd2: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#109276]) +8 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb2/igt@gem_ctx_shared@q-promotion-bsd2.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb5/igt@gem_ctx_shared@q-promotion-bsd2.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#111325]) +4 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb3/igt@gem_exec_schedule@preemptive-hang-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb4/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][7] -> [DMESG-WARN][8] ([fdo#108566]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-glk: [PASS][9] -> [FAIL][10] ([fdo#104873]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-glk9/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-glk2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-hsw: [PASS][11] -> [FAIL][12] ([fdo#105767]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-hsw7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-hsw: [PASS][13] -> [SKIP][14] ([fdo#109271]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-hsw7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-hsw8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: - shard-iclb: [PASS][15] -> [FAIL][16] ([fdo#103167]) +4 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-iclb: [PASS][17] -> [FAIL][18] ([fdo#103166]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb1/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][19] -> [SKIP][20] ([fdo#109441]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb4/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_setmode@basic: - shard-apl: [PASS][21] -> [FAIL][22] ([fdo#99912]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-apl1/igt@kms_setmode@basic.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-apl6/igt@kms_setmode@basic.html #### Possible fixes #### * igt@drm_import_export@import-close-race-flink: - shard-hsw: [INCOMPLETE][23] ([fdo#103540]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-hsw1/igt@drm_import_export@import-close-race-flink.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-hsw1/igt@drm_import_export@import-close-race-flink.html * igt@gem_ctx_isolation@bcs0-s3: - shard-apl: [DMESG-WARN][25] ([fdo#108566]) -> [PASS][26] +6 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-apl7/igt@gem_ctx_isolation@bcs0-s3.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-apl8/igt@gem_ctx_isolation@bcs0-s3.html * igt@gem_exec_schedule@out-order-bsd1: - shard-iclb: [SKIP][27] ([fdo#109276]) -> [PASS][28] +12 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb5/igt@gem_exec_schedule@out-order-bsd1.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb2/igt@gem_exec_schedule@out-order-bsd1.html * igt@gem_exec_schedule@preempt-bsd: - shard-iclb: [SKIP][29] ([fdo#111325]) -> [PASS][30] +5 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb1/igt@gem_exec_schedule@preempt-bsd.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb5/igt@gem_exec_schedule@preempt-bsd.html * igt@kms_flip@dpms-vs-vblank-race: - shard-apl: [FAIL][31] ([fdo#111609]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-apl7/igt@kms_flip@dpms-vs-vblank-race.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-apl1/igt@kms_flip@dpms-vs-vblank-race.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [FAIL][33] ([fdo#103167]) -> [PASS][34] +4 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html * igt@kms_psr@psr2_suspend: - shard-iclb: [SKIP][35] ([fdo#109441]) -> [PASS][36] +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb5/igt@kms_psr@psr2_suspend.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb2/igt@kms_psr@psr2_suspend.html * igt@perf@rc6-disable: - shard-kbl: [FAIL][37] ([fdo#103179]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-kbl2/igt@perf@rc6-disable.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-kbl2/igt@perf@rc6-disable.html * igt@perf_pmu@cpu-hotplug: - shard-glk: [TIMEOUT][39] -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-glk5/igt@perf_pmu@cpu-hotplug.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-glk6/igt@perf_pmu@cpu-hotplug.html #### Warnings #### * igt@gem_mocs_settings@mocs-rc6-bsd2: - shard-iclb: [SKIP][41] ([fdo#109276]) -> [FAIL][42] ([fdo#111330]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb8/igt@gem_mocs_settings@mocs-rc6-bsd2.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb2/igt@gem_mocs_settings@mocs-rc6-bsd2.html * igt@gem_mocs_settings@mocs-reset-bsd2: - shard-iclb: [FAIL][43] ([fdo#111330]) -> [SKIP][44] ([fdo#109276]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb4/igt@gem_mocs_settings@mocs-reset-bsd2.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb7/igt@gem_mocs_settings@mocs-reset-bsd2.html * igt@kms_busy@extended-modeset-hang-newfb-render-d: - shard-glk: [TIMEOUT][45] -> [SKIP][46] ([fdo#109271] / [fdo#109278]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-glk5/igt@kms_busy@extended-modeset-hang-newfb-render-d.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-glk5/igt@kms_busy@extended-modeset-hang-newfb-render-d.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [DMESG-WARN][47] ([fdo#107724]) -> [SKIP][48] ([fdo#109349]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6963/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103179]: https://bugs.freedesktop.org/show_bug.cgi?id=103179 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#104873]: https://bugs.freedesktop.org/show_bug.cgi?id=104873 [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110548]: https://bugs.freedesktop.org/show_bug.cgi?id=110548 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#111609]: https://bugs.freedesktop.org/show_bug.cgi?id=111609 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (16 -> 6) ------------------------------ ERROR: It appears as if the changes made in IGTPW_3502_full prevented too many machines from booting. Missing (10): shard-skl pig-hsw-4770r shard-tglb1 shard-tglb2 shard-tglb3 shard-tglb4 shard-tglb5 shard-tglb6 pig-glk-j5005 pig-skl-6260u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5203 -> IGTPW_3502 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6963: 364bf33c246115063174fa2a07e9f5a6bddc9f72 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3502: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/ IGT_5203: 82326332f7af336d390e00ae87187bc207fd33dd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3502/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) 2019-09-26 4:31 [igt-dev] [PATCH i-g-t] kms_content_protection: Set CP prop to UNDESIRED at igt exit Anshuman Gupta ` (2 preceding siblings ...) 2019-09-27 1:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2019-10-07 11:10 ` Patchwork 2019-10-07 12:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2019-10-07 11:10 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) URL : https://patchwork.freedesktop.org/series/67257/ State : success == Summary == CI Bug Log - changes from CI_DRM_7021 -> IGTPW_3545 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/index.html Known issues ------------ Here are the changes found in IGTPW_3545 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s4-devices: - fi-icl-u3: [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/fi-icl-u3/igt@gem_exec_suspend@basic-s4-devices.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/fi-icl-u3/igt@gem_exec_suspend@basic-s4-devices.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [PASS][3] -> [FAIL][4] ([fdo#111045] / [fdo#111096]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html #### Possible fixes #### * igt@gem_ctx_create@basic-files: - {fi-tgl-u}: [INCOMPLETE][5] ([fdo#111735]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/fi-tgl-u/igt@gem_ctx_create@basic-files.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/fi-tgl-u/igt@gem_ctx_create@basic-files.html * igt@gem_exec_suspend@basic: - fi-icl-u3: [FAIL][7] ([fdo#111699]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/fi-icl-u3/igt@gem_exec_suspend@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/fi-icl-u3/igt@gem_exec_suspend@basic.html * igt@gem_mmap_gtt@basic-small-bo-tiledy: - fi-icl-u3: [DMESG-WARN][9] ([fdo#107724]) -> [PASS][10] +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/fi-icl-u3/igt@gem_mmap_gtt@basic-small-bo-tiledy.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/fi-icl-u3/igt@gem_mmap_gtt@basic-small-bo-tiledy.html * igt@i915_selftest@live_execlists: - fi-icl-u3: [DMESG-WARN][11] -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/fi-icl-u3/igt@i915_selftest@live_execlists.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/fi-icl-u3/igt@i915_selftest@live_execlists.html * igt@kms_frontbuffer_tracking@basic: - fi-hsw-peppy: [DMESG-WARN][13] ([fdo#102614]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/fi-hsw-peppy/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#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#111699]: https://bugs.freedesktop.org/show_bug.cgi?id=111699 [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735 Participating hosts (52 -> 44) ------------------------------ Missing (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ivb-3770 fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5215 -> IGTPW_3545 CI-20190529: 20190529 CI_DRM_7021: fc1c1e3f1cfa9bad973b7547b8c123b3ac80c678 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3545: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/index.html IGT_5215: 880c8d3c9831349a269ac6822c8d44e80807089f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) 2019-09-26 4:31 [igt-dev] [PATCH i-g-t] kms_content_protection: Set CP prop to UNDESIRED at igt exit Anshuman Gupta ` (3 preceding siblings ...) 2019-10-07 11:10 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) Patchwork @ 2019-10-07 12:25 ` Patchwork 2019-10-09 10:36 ` Anshuman Gupta 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2019-10-07 12:25 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) URL : https://patchwork.freedesktop.org/series/67257/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7021_full -> IGTPW_3545_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_3545_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_3545_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_3545/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3545_full: ### IGT changes ### #### Possible regressions #### * igt@vgem_basic@unload: - shard-iclb: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb3/igt@vgem_basic@unload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb4/igt@vgem_basic@unload.html Known issues ------------ Here are the changes found in IGTPW_3545_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#110854]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@gem_exec_balancer@smoke.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb6/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#111325]) +4 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb8/igt@gem_exec_schedule@reorder-wide-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@gem_tiled_swapping@non-threaded: - shard-hsw: [PASS][7] -> [INCOMPLETE][8] ([fdo#103540] / [fdo#108686]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw4/igt@gem_tiled_swapping@non-threaded.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw2/igt@gem_tiled_swapping@non-threaded.html * igt@i915_suspend@sysfs-reader: - shard-apl: [PASS][9] -> [DMESG-WARN][10] ([fdo#108566]) +7 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl3/igt@i915_suspend@sysfs-reader.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl8/igt@i915_suspend@sysfs-reader.html * igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding: - shard-apl: [PASS][11] -> [FAIL][12] ([fdo#103232]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html - shard-kbl: [PASS][13] -> [FAIL][14] ([fdo#103232]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html * igt@kms_flip@absolute-wf_vblank: - shard-hsw: [PASS][15] -> [INCOMPLETE][16] ([fdo#103540]) +2 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw4/igt@kms_flip@absolute-wf_vblank.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw8/igt@kms_flip@absolute-wf_vblank.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-apl: [PASS][17] -> [FAIL][18] ([fdo#103167]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-iclb: [PASS][19] -> [FAIL][20] ([fdo#103167]) +10 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-iclb: [PASS][21] -> [FAIL][22] ([fdo#103166]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_plane_lowres@pipe-a-tiling-x.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb1/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr2_su@page_flip: - shard-iclb: [PASS][23] -> [SKIP][24] ([fdo#109642] / [fdo#111068]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_psr2_su@page_flip.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109441]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@kms_psr@psr2_cursor_blt.html * igt@kms_setmode@basic: - shard-apl: [PASS][27] -> [FAIL][28] ([fdo#99912]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl7/igt@kms_setmode@basic.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl8/igt@kms_setmode@basic.html * igt@prime_busy@hang-bsd2: - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#109276]) +12 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@prime_busy@hang-bsd2.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb8/igt@prime_busy@hang-bsd2.html * igt@vgem_basic@unload: - shard-glk: [PASS][31] -> [SKIP][32] ([fdo#109271]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-glk7/igt@vgem_basic@unload.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-glk6/igt@vgem_basic@unload.html #### Possible fixes #### * igt@gem_ctx_isolation@rcs0-s3: - shard-apl: [DMESG-WARN][33] ([fdo#108566]) -> [PASS][34] +9 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl2/igt@gem_ctx_isolation@rcs0-s3.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl1/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_ctx_isolation@vcs1-s3: - {shard-tglb}: [INCOMPLETE][35] ([fdo#111832]) -> [PASS][36] +4 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-tglb1/igt@gem_ctx_isolation@vcs1-s3.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-tglb6/igt@gem_ctx_isolation@vcs1-s3.html * igt@gem_ctx_switch@all-light: - shard-hsw: [INCOMPLETE][37] ([fdo#103540]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw2/igt@gem_ctx_switch@all-light.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw4/igt@gem_ctx_switch@all-light.html * igt@gem_eio@in-flight-contexts-immediate: - shard-snb: [FAIL][39] -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb6/igt@gem_eio@in-flight-contexts-immediate.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb1/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_eio@unwedge-stress: - shard-snb: [FAIL][41] ([fdo#109661]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb5/igt@gem_eio@unwedge-stress.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb6/igt@gem_eio@unwedge-stress.html * igt@gem_exec_schedule@preempt-queue-bsd: - shard-iclb: [SKIP][43] ([fdo#111325]) -> [PASS][44] +5 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd2: - shard-iclb: [SKIP][45] ([fdo#109276]) -> [PASS][46] +8 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb8/igt@gem_exec_schedule@preempt-queue-bsd2.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd2.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-snb: [DMESG-WARN][47] ([fdo#111870]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-hsw: [DMESG-WARN][49] ([fdo#111870]) -> [PASS][50] +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw6/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@i915_query@engine-info-invalid: - {shard-tglb}: [INCOMPLETE][51] ([fdo#111747]) -> [PASS][52] +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-tglb5/igt@i915_query@engine-info-invalid.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-tglb4/igt@i915_query@engine-info-invalid.html * igt@i915_selftest@live_hangcheck: - shard-snb: [INCOMPLETE][53] ([fdo#105411]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb7/igt@i915_selftest@live_hangcheck.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb7/igt@i915_selftest@live_hangcheck.html * igt@i915_selftest@live_workarounds: - shard-kbl: [DMESG-FAIL][55] -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-kbl2/igt@i915_selftest@live_workarounds.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-kbl7/igt@i915_selftest@live_workarounds.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [FAIL][57] ([fdo#103167]) -> [PASS][58] +6 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-iclb: [FAIL][59] ([fdo#103167] / [fdo#110378]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-tilingchange: - shard-apl: [FAIL][61] ([fdo#103167]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl1/igt@kms_frontbuffer_tracking@fbc-tilingchange.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl7/igt@kms_frontbuffer_tracking@fbc-tilingchange.html - shard-glk: [FAIL][63] ([fdo#103167]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-glk7/igt@kms_frontbuffer_tracking@fbc-tilingchange.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-glk3/igt@kms_frontbuffer_tracking@fbc-tilingchange.html - shard-kbl: [FAIL][65] ([fdo#103167]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-tilingchange.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-tilingchange.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - {shard-tglb}: [FAIL][67] ([fdo#103167]) -> [PASS][68] +7 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-iclb: [INCOMPLETE][69] ([fdo#107713]) -> [PASS][70] +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][71] ([fdo#109642] / [fdo#111068]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb5/igt@kms_psr2_su@frontbuffer.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-iclb: [SKIP][73] ([fdo#109441]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_gtt.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_gtt.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][75] ([fdo#109276]) -> [FAIL][76] ([fdo#111329]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-isolation-bsd2: - shard-iclb: [FAIL][77] ([fdo#111330]) -> [SKIP][78] ([fdo#109276]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb1/igt@gem_mocs_settings@mocs-isolation-bsd2.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb5/igt@gem_mocs_settings@mocs-isolation-bsd2.html * igt@gem_mocs_settings@mocs-rc6-bsd2: - shard-iclb: [SKIP][79] ([fdo#109276]) -> [FAIL][80] ([fdo#111330]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb6/igt@gem_mocs_settings@mocs-rc6-bsd2.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@gem_mocs_settings@mocs-rc6-bsd2.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [DMESG-WARN][81] ([fdo#107724]) -> [SKIP][82] ([fdo#109349]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661 [fdo#110378]: https://bugs.freedesktop.org/show_bug.cgi?id=110378 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#111597]: https://bugs.freedesktop.org/show_bug.cgi?id=111597 [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646 [fdo#111703]: https://bugs.freedesktop.org/show_bug.cgi?id=111703 [fdo#111723]: https://bugs.freedesktop.org/show_bug.cgi?id=111723 [fdo#111736]: https://bugs.freedesktop.org/show_bug.cgi?id=111736 [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747 [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832 [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (11 -> 7) ------------------------------ Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5215 -> IGTPW_3545 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7021: fc1c1e3f1cfa9bad973b7547b8c123b3ac80c678 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3545: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/index.html IGT_5215: 880c8d3c9831349a269ac6822c8d44e80807089f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) 2019-10-07 12:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2019-10-09 10:36 ` Anshuman Gupta 2019-10-09 12:25 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 9+ messages in thread From: Anshuman Gupta @ 2019-10-09 10:36 UTC (permalink / raw) To: igt-dev, lakshminarayana.vudum On 2019-10-07 at 12:25:12 +0000, Patchwork wrote: Hi Lakshmi, > == Series Details == > > Series: kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) > URL : https://patchwork.freedesktop.org/series/67257/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_7021_full -> IGTPW_3545_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_3545_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_3545_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_3545/index.html > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_3545_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@vgem_basic@unload: > - shard-iclb: [PASS][1] -> [SKIP][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb3/igt@vgem_basic@unload.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb4/igt@vgem_basic@unload.html Above failure is a known issue https://bugs.freedesktop.org/show_bug.cgi?id=110272 Not related to this patch, could you please update the filter. Thanks , Anshuman Gupta. > > > Known issues > ------------ > > Here are the changes found in IGTPW_3545_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_exec_balancer@smoke: > - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#110854]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@gem_exec_balancer@smoke.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb6/igt@gem_exec_balancer@smoke.html > > * igt@gem_exec_schedule@reorder-wide-bsd: > - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#111325]) +4 similar issues > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb8/igt@gem_exec_schedule@reorder-wide-bsd.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html > > * igt@gem_tiled_swapping@non-threaded: > - shard-hsw: [PASS][7] -> [INCOMPLETE][8] ([fdo#103540] / [fdo#108686]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw4/igt@gem_tiled_swapping@non-threaded.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw2/igt@gem_tiled_swapping@non-threaded.html > > * igt@i915_suspend@sysfs-reader: > - shard-apl: [PASS][9] -> [DMESG-WARN][10] ([fdo#108566]) +7 similar issues > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl3/igt@i915_suspend@sysfs-reader.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl8/igt@i915_suspend@sysfs-reader.html > > * igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding: > - shard-apl: [PASS][11] -> [FAIL][12] ([fdo#103232]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html > - shard-kbl: [PASS][13] -> [FAIL][14] ([fdo#103232]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html > > * igt@kms_flip@absolute-wf_vblank: > - shard-hsw: [PASS][15] -> [INCOMPLETE][16] ([fdo#103540]) +2 similar issues > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw4/igt@kms_flip@absolute-wf_vblank.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw8/igt@kms_flip@absolute-wf_vblank.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: > - shard-apl: [PASS][17] -> [FAIL][18] ([fdo#103167]) > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: > - shard-iclb: [PASS][19] -> [FAIL][20] ([fdo#103167]) +10 similar issues > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html > > * igt@kms_plane_lowres@pipe-a-tiling-x: > - shard-iclb: [PASS][21] -> [FAIL][22] ([fdo#103166]) +1 similar issue > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_plane_lowres@pipe-a-tiling-x.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb1/igt@kms_plane_lowres@pipe-a-tiling-x.html > > * igt@kms_psr2_su@page_flip: > - shard-iclb: [PASS][23] -> [SKIP][24] ([fdo#109642] / [fdo#111068]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_psr2_su@page_flip.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb1/igt@kms_psr2_su@page_flip.html > > * igt@kms_psr@psr2_cursor_blt: > - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109441]) +1 similar issue > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@kms_psr@psr2_cursor_blt.html > > * igt@kms_setmode@basic: > - shard-apl: [PASS][27] -> [FAIL][28] ([fdo#99912]) > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl7/igt@kms_setmode@basic.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl8/igt@kms_setmode@basic.html > > * igt@prime_busy@hang-bsd2: > - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#109276]) +12 similar issues > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@prime_busy@hang-bsd2.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb8/igt@prime_busy@hang-bsd2.html > > * igt@vgem_basic@unload: > - shard-glk: [PASS][31] -> [SKIP][32] ([fdo#109271]) > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-glk7/igt@vgem_basic@unload.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-glk6/igt@vgem_basic@unload.html > > > #### Possible fixes #### > > * igt@gem_ctx_isolation@rcs0-s3: > - shard-apl: [DMESG-WARN][33] ([fdo#108566]) -> [PASS][34] +9 similar issues > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl2/igt@gem_ctx_isolation@rcs0-s3.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl1/igt@gem_ctx_isolation@rcs0-s3.html > > * igt@gem_ctx_isolation@vcs1-s3: > - {shard-tglb}: [INCOMPLETE][35] ([fdo#111832]) -> [PASS][36] +4 similar issues > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-tglb1/igt@gem_ctx_isolation@vcs1-s3.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-tglb6/igt@gem_ctx_isolation@vcs1-s3.html > > * igt@gem_ctx_switch@all-light: > - shard-hsw: [INCOMPLETE][37] ([fdo#103540]) -> [PASS][38] > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw2/igt@gem_ctx_switch@all-light.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw4/igt@gem_ctx_switch@all-light.html > > * igt@gem_eio@in-flight-contexts-immediate: > - shard-snb: [FAIL][39] -> [PASS][40] > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb6/igt@gem_eio@in-flight-contexts-immediate.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb1/igt@gem_eio@in-flight-contexts-immediate.html > > * igt@gem_eio@unwedge-stress: > - shard-snb: [FAIL][41] ([fdo#109661]) -> [PASS][42] > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb5/igt@gem_eio@unwedge-stress.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb6/igt@gem_eio@unwedge-stress.html > > * igt@gem_exec_schedule@preempt-queue-bsd: > - shard-iclb: [SKIP][43] ([fdo#111325]) -> [PASS][44] +5 similar issues > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd.html > > * igt@gem_exec_schedule@preempt-queue-bsd2: > - shard-iclb: [SKIP][45] ([fdo#109276]) -> [PASS][46] +8 similar issues > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb8/igt@gem_exec_schedule@preempt-queue-bsd2.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd2.html > > * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: > - shard-snb: [DMESG-WARN][47] ([fdo#111870]) -> [PASS][48] > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html > > * igt@gem_userptr_blits@sync-unmap-cycles: > - shard-hsw: [DMESG-WARN][49] ([fdo#111870]) -> [PASS][50] +1 similar issue > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw6/igt@gem_userptr_blits@sync-unmap-cycles.html > > * igt@i915_query@engine-info-invalid: > - {shard-tglb}: [INCOMPLETE][51] ([fdo#111747]) -> [PASS][52] +2 similar issues > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-tglb5/igt@i915_query@engine-info-invalid.html > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-tglb4/igt@i915_query@engine-info-invalid.html > > * igt@i915_selftest@live_hangcheck: > - shard-snb: [INCOMPLETE][53] ([fdo#105411]) -> [PASS][54] > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb7/igt@i915_selftest@live_hangcheck.html > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb7/igt@i915_selftest@live_hangcheck.html > > * igt@i915_selftest@live_workarounds: > - shard-kbl: [DMESG-FAIL][55] -> [PASS][56] > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-kbl2/igt@i915_selftest@live_workarounds.html > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-kbl7/igt@i915_selftest@live_workarounds.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: > - shard-iclb: [FAIL][57] ([fdo#103167]) -> [PASS][58] +6 similar issues > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbc-1p-rte: > - shard-iclb: [FAIL][59] ([fdo#103167] / [fdo#110378]) -> [PASS][60] > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html > > * igt@kms_frontbuffer_tracking@fbc-tilingchange: > - shard-apl: [FAIL][61] ([fdo#103167]) -> [PASS][62] > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl1/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl7/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > - shard-glk: [FAIL][63] ([fdo#103167]) -> [PASS][64] > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-glk7/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-glk3/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > - shard-kbl: [FAIL][65] ([fdo#103167]) -> [PASS][66] > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: > - {shard-tglb}: [FAIL][67] ([fdo#103167]) -> [PASS][68] +7 similar issues > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html > > * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: > - shard-iclb: [INCOMPLETE][69] ([fdo#107713]) -> [PASS][70] +2 similar issues > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html > > * igt@kms_psr2_su@frontbuffer: > - shard-iclb: [SKIP][71] ([fdo#109642] / [fdo#111068]) -> [PASS][72] > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb5/igt@kms_psr2_su@frontbuffer.html > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@kms_psr2_su@frontbuffer.html > > * igt@kms_psr@psr2_cursor_mmap_gtt: > - shard-iclb: [SKIP][73] ([fdo#109441]) -> [PASS][74] > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_gtt.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_gtt.html > > > #### Warnings #### > > * igt@gem_ctx_isolation@vcs1-nonpriv: > - shard-iclb: [SKIP][75] ([fdo#109276]) -> [FAIL][76] ([fdo#111329]) > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv.html > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html > > * igt@gem_mocs_settings@mocs-isolation-bsd2: > - shard-iclb: [FAIL][77] ([fdo#111330]) -> [SKIP][78] ([fdo#109276]) > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb1/igt@gem_mocs_settings@mocs-isolation-bsd2.html > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb5/igt@gem_mocs_settings@mocs-isolation-bsd2.html > > * igt@gem_mocs_settings@mocs-rc6-bsd2: > - shard-iclb: [SKIP][79] ([fdo#109276]) -> [FAIL][80] ([fdo#111330]) > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb6/igt@gem_mocs_settings@mocs-rc6-bsd2.html > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@gem_mocs_settings@mocs-rc6-bsd2.html > > * igt@kms_dp_dsc@basic-dsc-enable-edp: > - shard-iclb: [DMESG-WARN][81] ([fdo#107724]) -> [SKIP][82] ([fdo#109349]) > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 > [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 > [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 > [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 > [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 > [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 > [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 > [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 > [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 > [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 > [fdo#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661 > [fdo#110378]: https://bugs.freedesktop.org/show_bug.cgi?id=110378 > [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 > [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 > [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 > [fdo#111597]: https://bugs.freedesktop.org/show_bug.cgi?id=111597 > [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646 > [fdo#111703]: https://bugs.freedesktop.org/show_bug.cgi?id=111703 > [fdo#111723]: https://bugs.freedesktop.org/show_bug.cgi?id=111723 > [fdo#111736]: https://bugs.freedesktop.org/show_bug.cgi?id=111736 > [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747 > [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832 > [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850 > [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 > [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 > > > Participating hosts (11 -> 7) > ------------------------------ > > Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_5215 -> IGTPW_3545 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_7021: fc1c1e3f1cfa9bad973b7547b8c123b3ac80c678 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_3545: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/index.html > IGT_5215: 880c8d3c9831349a269ac6822c8d44e80807089f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) 2019-10-09 10:36 ` Anshuman Gupta @ 2019-10-09 12:25 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 9+ messages in thread From: Vudum, Lakshminarayana @ 2019-10-09 12:25 UTC (permalink / raw) To: Gupta, Anshuman, igt-dev@lists.freedesktop.org @Anshuman, I have reopened Bug 110272 and updated CI bug log filter. Lakshmi. -----Original Message----- From: Gupta, Anshuman <anshuman.gupta@intel.com> Sent: Wednesday, October 9, 2019 1:36 PM To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Cc: C, Ramalingam <ramalingam.c@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) On 2019-10-07 at 12:25:12 +0000, Patchwork wrote: Hi Lakshmi, > == Series Details == > > Series: kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) > URL : https://patchwork.freedesktop.org/series/67257/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_7021_full -> IGTPW_3545_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_3545_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_3545_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_3545/index.html > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_3545_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@vgem_basic@unload: > - shard-iclb: [PASS][1] -> [SKIP][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb3/igt@vgem_basic@unload.html > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb4/igt@vg > em_basic@unload.html Above failure is a known issue https://bugs.freedesktop.org/show_bug.cgi?id=110272 Not related to this patch, could you please update the filter. Thanks , Anshuman Gupta. > > > Known issues > ------------ > > Here are the changes found in IGTPW_3545_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_exec_balancer@smoke: > - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#110854]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@gem_exec_balancer@smoke.html > [4]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb6/igt@ge > m_exec_balancer@smoke.html > > * igt@gem_exec_schedule@reorder-wide-bsd: > - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#111325]) +4 similar issues > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb8/igt@gem_exec_schedule@reorder-wide-bsd.html > [6]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@ge > m_exec_schedule@reorder-wide-bsd.html > > * igt@gem_tiled_swapping@non-threaded: > - shard-hsw: [PASS][7] -> [INCOMPLETE][8] ([fdo#103540] / [fdo#108686]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw4/igt@gem_tiled_swapping@non-threaded.html > [8]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw2/igt@gem > _tiled_swapping@non-threaded.html > > * igt@i915_suspend@sysfs-reader: > - shard-apl: [PASS][9] -> [DMESG-WARN][10] ([fdo#108566]) +7 similar issues > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl3/igt@i915_suspend@sysfs-reader.html > [10]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl8/igt@i91 > 5_suspend@sysfs-reader.html > > * igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding: > - shard-apl: [PASS][11] -> [FAIL][12] ([fdo#103232]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html > - shard-kbl: [PASS][13] -> [FAIL][14] ([fdo#103232]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html > [14]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-kbl1/igt@kms > _cursor_crc@pipe-b-cursor-64x21-sliding.html > > * igt@kms_flip@absolute-wf_vblank: > - shard-hsw: [PASS][15] -> [INCOMPLETE][16] ([fdo#103540]) +2 similar issues > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw4/igt@kms_flip@absolute-wf_vblank.html > [16]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw8/igt@kms > _flip@absolute-wf_vblank.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: > - shard-apl: [PASS][17] -> [FAIL][18] ([fdo#103167]) > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html > [18]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl2/igt@kms > _frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: > - shard-iclb: [PASS][19] -> [FAIL][20] ([fdo#103167]) +10 similar issues > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html > [20]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb3/igt@km > s_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html > > * igt@kms_plane_lowres@pipe-a-tiling-x: > - shard-iclb: [PASS][21] -> [FAIL][22] ([fdo#103166]) +1 similar issue > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_plane_lowres@pipe-a-tiling-x.html > [22]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb1/igt@km > s_plane_lowres@pipe-a-tiling-x.html > > * igt@kms_psr2_su@page_flip: > - shard-iclb: [PASS][23] -> [SKIP][24] ([fdo#109642] / [fdo#111068]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_psr2_su@page_flip.html > [24]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb1/igt@km > s_psr2_su@page_flip.html > > * igt@kms_psr@psr2_cursor_blt: > - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109441]) +1 similar issue > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html > [26]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@km > s_psr@psr2_cursor_blt.html > > * igt@kms_setmode@basic: > - shard-apl: [PASS][27] -> [FAIL][28] ([fdo#99912]) > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl7/igt@kms_setmode@basic.html > [28]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl8/igt@kms > _setmode@basic.html > > * igt@prime_busy@hang-bsd2: > - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#109276]) +12 similar issues > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@prime_busy@hang-bsd2.html > [30]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb8/igt@pr > ime_busy@hang-bsd2.html > > * igt@vgem_basic@unload: > - shard-glk: [PASS][31] -> [SKIP][32] ([fdo#109271]) > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-glk7/igt@vgem_basic@unload.html > [32]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-glk6/igt@vge > m_basic@unload.html > > > #### Possible fixes #### > > * igt@gem_ctx_isolation@rcs0-s3: > - shard-apl: [DMESG-WARN][33] ([fdo#108566]) -> [PASS][34] +9 similar issues > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl2/igt@gem_ctx_isolation@rcs0-s3.html > [34]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl1/igt@gem > _ctx_isolation@rcs0-s3.html > > * igt@gem_ctx_isolation@vcs1-s3: > - {shard-tglb}: [INCOMPLETE][35] ([fdo#111832]) -> [PASS][36] +4 similar issues > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-tglb1/igt@gem_ctx_isolation@vcs1-s3.html > [36]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-tglb6/igt@ge > m_ctx_isolation@vcs1-s3.html > > * igt@gem_ctx_switch@all-light: > - shard-hsw: [INCOMPLETE][37] ([fdo#103540]) -> [PASS][38] > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw2/igt@gem_ctx_switch@all-light.html > [38]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw4/igt@gem > _ctx_switch@all-light.html > > * igt@gem_eio@in-flight-contexts-immediate: > - shard-snb: [FAIL][39] -> [PASS][40] > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb6/igt@gem_eio@in-flight-contexts-immediate.html > [40]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb1/igt@gem > _eio@in-flight-contexts-immediate.html > > * igt@gem_eio@unwedge-stress: > - shard-snb: [FAIL][41] ([fdo#109661]) -> [PASS][42] > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb5/igt@gem_eio@unwedge-stress.html > [42]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb6/igt@gem > _eio@unwedge-stress.html > > * igt@gem_exec_schedule@preempt-queue-bsd: > - shard-iclb: [SKIP][43] ([fdo#111325]) -> [PASS][44] +5 similar issues > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd.html > [44]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@ge > m_exec_schedule@preempt-queue-bsd.html > > * igt@gem_exec_schedule@preempt-queue-bsd2: > - shard-iclb: [SKIP][45] ([fdo#109276]) -> [PASS][46] +8 similar issues > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb8/igt@gem_exec_schedule@preempt-queue-bsd2.html > [46]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb4/igt@ge > m_exec_schedule@preempt-queue-bsd2.html > > * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: > - shard-snb: [DMESG-WARN][47] ([fdo#111870]) -> [PASS][48] > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html > [48]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb7/igt@gem > _userptr_blits@map-fixed-invalidate-overlap-busy.html > > * igt@gem_userptr_blits@sync-unmap-cycles: > - shard-hsw: [DMESG-WARN][49] ([fdo#111870]) -> [PASS][50] +1 similar issue > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html > [50]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-hsw6/igt@gem > _userptr_blits@sync-unmap-cycles.html > > * igt@i915_query@engine-info-invalid: > - {shard-tglb}: [INCOMPLETE][51] ([fdo#111747]) -> [PASS][52] +2 similar issues > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-tglb5/igt@i915_query@engine-info-invalid.html > [52]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-tglb4/igt@i9 > 15_query@engine-info-invalid.html > > * igt@i915_selftest@live_hangcheck: > - shard-snb: [INCOMPLETE][53] ([fdo#105411]) -> [PASS][54] > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-snb7/igt@i915_selftest@live_hangcheck.html > [54]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-snb7/igt@i91 > 5_selftest@live_hangcheck.html > > * igt@i915_selftest@live_workarounds: > - shard-kbl: [DMESG-FAIL][55] -> [PASS][56] > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-kbl2/igt@i915_selftest@live_workarounds.html > [56]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-kbl7/igt@i91 > 5_selftest@live_workarounds.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: > - shard-iclb: [FAIL][57] ([fdo#103167]) -> [PASS][58] +6 similar issues > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > [58]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb6/igt@km > s_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbc-1p-rte: > - shard-iclb: [FAIL][59] ([fdo#103167] / [fdo#110378]) -> [PASS][60] > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html > [60]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@km > s_frontbuffer_tracking@fbc-1p-rte.html > > * igt@kms_frontbuffer_tracking@fbc-tilingchange: > - shard-apl: [FAIL][61] ([fdo#103167]) -> [PASS][62] > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-apl1/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-apl7/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > - shard-glk: [FAIL][63] ([fdo#103167]) -> [PASS][64] > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-glk7/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-glk3/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > - shard-kbl: [FAIL][65] ([fdo#103167]) -> [PASS][66] > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-tilingchange.html > [66]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-kbl3/igt@kms > _frontbuffer_tracking@fbc-tilingchange.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: > - {shard-tglb}: [FAIL][67] ([fdo#103167]) -> [PASS][68] +7 similar issues > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html > [68]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-tglb7/igt@km > s_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html > > * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: > - shard-iclb: [INCOMPLETE][69] ([fdo#107713]) -> [PASS][70] +2 similar issues > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html > [70]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@km > s_plane_alpha_blend@pipe-a-alpha-opaque-fb.html > > * igt@kms_psr2_su@frontbuffer: > - shard-iclb: [SKIP][71] ([fdo#109642] / [fdo#111068]) -> [PASS][72] > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb5/igt@kms_psr2_su@frontbuffer.html > [72]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@km > s_psr2_su@frontbuffer.html > > * igt@kms_psr@psr2_cursor_mmap_gtt: > - shard-iclb: [SKIP][73] ([fdo#109441]) -> [PASS][74] > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_gtt.html > [74]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@km > s_psr@psr2_cursor_mmap_gtt.html > > > #### Warnings #### > > * igt@gem_ctx_isolation@vcs1-nonpriv: > - shard-iclb: [SKIP][75] ([fdo#109276]) -> [FAIL][76] ([fdo#111329]) > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv.html > [76]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb1/igt@ge > m_ctx_isolation@vcs1-nonpriv.html > > * igt@gem_mocs_settings@mocs-isolation-bsd2: > - shard-iclb: [FAIL][77] ([fdo#111330]) -> [SKIP][78] ([fdo#109276]) > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb1/igt@gem_mocs_settings@mocs-isolation-bsd2.html > [78]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb5/igt@ge > m_mocs_settings@mocs-isolation-bsd2.html > > * igt@gem_mocs_settings@mocs-rc6-bsd2: > - shard-iclb: [SKIP][79] ([fdo#109276]) -> [FAIL][80] ([fdo#111330]) > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb6/igt@gem_mocs_settings@mocs-rc6-bsd2.html > [80]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb2/igt@ge > m_mocs_settings@mocs-rc6-bsd2.html > > * igt@kms_dp_dsc@basic-dsc-enable-edp: > - shard-iclb: [DMESG-WARN][81] ([fdo#107724]) -> [SKIP][82] ([fdo#109349]) > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7021/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html > [82]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/shard-iclb7/igt@km > s_dp_dsc@basic-dsc-enable-edp.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 > [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 > [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 > [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 > [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 > [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 > [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 > [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 > [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 > [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 > [fdo#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661 > [fdo#110378]: https://bugs.freedesktop.org/show_bug.cgi?id=110378 > [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 > [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 > [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 > [fdo#111597]: https://bugs.freedesktop.org/show_bug.cgi?id=111597 > [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646 > [fdo#111703]: https://bugs.freedesktop.org/show_bug.cgi?id=111703 > [fdo#111723]: https://bugs.freedesktop.org/show_bug.cgi?id=111723 > [fdo#111736]: https://bugs.freedesktop.org/show_bug.cgi?id=111736 > [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747 > [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832 > [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850 > [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 > [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 > > > Participating hosts (11 -> 7) > ------------------------------ > > Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_5215 -> IGTPW_3545 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_7021: fc1c1e3f1cfa9bad973b7547b8c123b3ac80c678 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_3545: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/index.html > IGT_5215: 880c8d3c9831349a269ac6822c8d44e80807089f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit > > == Logs == > > For more details see: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3545/index.html --------------------------------------------------------------------- Intel Finland Oy Registered Address: PL 281, 00181 Helsinki Business Identity Code: 0357606 - 4 Domiciled in Helsinki This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies. _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2019-10-09 18:35 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-09-26 4:31 [igt-dev] [PATCH i-g-t] kms_content_protection: Set CP prop to UNDESIRED at igt exit Anshuman Gupta 2019-09-26 5:01 ` Ramalingam C 2019-10-09 18:35 ` Ramalingam C 2019-09-26 5:25 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-09-27 1:54 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2019-10-07 11:10 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_content_protection: Set CP prop to UNDESIRED at igt exit (rev2) Patchwork 2019-10-07 12:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2019-10-09 10:36 ` Anshuman Gupta 2019-10-09 12:25 ` Vudum, Lakshminarayana
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.