* [igt-dev] [PATCH i-g-t v2 0/2] DC states IGT misc
@ 2020-02-20 13:00 Anshuman Gupta
2020-02-20 13:00 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures Anshuman Gupta
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Anshuman Gupta @ 2020-02-20 13:00 UTC (permalink / raw)
To: igt-dev
Anshuman Gupta (2):
tests/i915_pm_dc: Dump power_domain_info on DC test failures
tests/i915_pm_dc: psr required only for dc*-psr tests
tests/i915/i915_pm_dc.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
--
2.24.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures 2020-02-20 13:00 [igt-dev] [PATCH i-g-t v2 0/2] DC states IGT misc Anshuman Gupta @ 2020-02-20 13:00 ` Anshuman Gupta 2020-02-20 21:25 ` Souza, Jose 2020-02-20 13:00 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/i915_pm_dc: psr required only for dc*-psr tests Anshuman Gupta ` (2 subsequent siblings) 3 siblings, 1 reply; 8+ messages in thread From: Anshuman Gupta @ 2020-02-20 13:00 UTC (permalink / raw) To: igt-dev Dump i915_power_domain_info debugfs attribute on DC state test failures, it will help to identify culprit, which causes non zero refcount for "DC off" power well. v2: - Fix the mem leak. [Jose] Cc: Animesh Manna <animesh.manna@intel.com> Cc: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_dc.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c index afcc10bc..fc6faa16 100644 --- a/tests/i915/i915_pm_dc.c +++ b/tests/i915/i915_pm_dc.c @@ -39,6 +39,10 @@ #define CHECK_DC6 (1 << 1) #define CHECK_DC3CO (1 << 2) +#define PWR_DOMAIN_INFO "i915_power_domain_info" + +char *pwr_dmn_info; + typedef struct { double r, g, b; } color_t; @@ -210,7 +214,8 @@ static void check_dc_counter(int debugfs_fd, int dc_flag, uint32_t prev_dc_count snprintf(tmp, sizeof(tmp), "%s", dc_flag & CHECK_DC3CO ? "DC3CO" : (dc_flag & CHECK_DC5 ? "DC5" : "DC6")); igt_assert_f(dc_state_wait_entry(debugfs_fd, dc_flag, prev_dc_count), - "%s state is not achieved\n", tmp); + "%s state is not achieved\n%s:\n%s\n", tmp, PWR_DOMAIN_INFO, + pwr_dmn_info = igt_sysfs_get(debugfs_fd, PWR_DOMAIN_INFO)); } static void setup_videoplayback(data_t *data) @@ -441,6 +446,8 @@ int main(int argc, char *argv[]) } igt_fixture { + if (pwr_dmn_info) + free(pwr_dmn_info); close(data.debugfs_fd); close(data.msr_fd); display_fini(&data); -- 2.24.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures 2020-02-20 13:00 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures Anshuman Gupta @ 2020-02-20 21:25 ` Souza, Jose 2020-02-26 20:31 ` Souza, Jose 0 siblings, 1 reply; 8+ messages in thread From: Souza, Jose @ 2020-02-20 21:25 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Gupta, Anshuman On Thu, 2020-02-20 at 18:30 +0530, Anshuman Gupta wrote: > Dump i915_power_domain_info debugfs attribute on DC state > test failures, it will help to identify culprit, which > causes non zero refcount for "DC off" power well. > > v2: > - Fix the mem leak. [Jose] > > Cc: Animesh Manna <animesh.manna@intel.com> > Cc: José Roberto de Souza <jose.souza@intel.com> > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/i915/i915_pm_dc.c | 9 ++++++++- > 1 file changed, 8 insertions(+), 1 deletion(-) > > diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c > index afcc10bc..fc6faa16 100644 > --- a/tests/i915/i915_pm_dc.c > +++ b/tests/i915/i915_pm_dc.c > @@ -39,6 +39,10 @@ > #define CHECK_DC6 (1 << 1) > #define CHECK_DC3CO (1 << 2) > > +#define PWR_DOMAIN_INFO "i915_power_domain_info" > + > +char *pwr_dmn_info; not sure about this global variable but I also can't think in a better solution, Animesh any idea? > + > typedef struct { > double r, g, b; > } color_t; > @@ -210,7 +214,8 @@ static void check_dc_counter(int debugfs_fd, int > dc_flag, uint32_t prev_dc_count > snprintf(tmp, sizeof(tmp), "%s", dc_flag & CHECK_DC3CO ? > "DC3CO" : > (dc_flag & CHECK_DC5 ? "DC5" : "DC6")); > igt_assert_f(dc_state_wait_entry(debugfs_fd, dc_flag, > prev_dc_count), > - "%s state is not achieved\n", tmp); > + "%s state is not achieved\n%s:\n%s\n", tmp, > PWR_DOMAIN_INFO, > + pwr_dmn_info = igt_sysfs_get(debugfs_fd, > PWR_DOMAIN_INFO)); > } > > static void setup_videoplayback(data_t *data) > @@ -441,6 +446,8 @@ int main(int argc, char *argv[]) > } > > igt_fixture { > + if (pwr_dmn_info) > + free(pwr_dmn_info); nitpick: free() handles NULL, no need of the check here. > close(data.debugfs_fd); > close(data.msr_fd); > display_fini(&data); _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures 2020-02-20 21:25 ` Souza, Jose @ 2020-02-26 20:31 ` Souza, Jose 0 siblings, 0 replies; 8+ messages in thread From: Souza, Jose @ 2020-02-26 20:31 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Gupta, Anshuman On Thu, 2020-02-20 at 21:25 +0000, Souza, Jose wrote: > On Thu, 2020-02-20 at 18:30 +0530, Anshuman Gupta wrote: > > Dump i915_power_domain_info debugfs attribute on DC state > > test failures, it will help to identify culprit, which > > causes non zero refcount for "DC off" power well. > > > > v2: > > - Fix the mem leak. [Jose] > > > > Cc: Animesh Manna <animesh.manna@intel.com> > > Cc: José Roberto de Souza <jose.souza@intel.com> > > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> > > --- > > tests/i915/i915_pm_dc.c | 9 ++++++++- > > 1 file changed, 8 insertions(+), 1 deletion(-) > > > > diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c > > index afcc10bc..fc6faa16 100644 > > --- a/tests/i915/i915_pm_dc.c > > +++ b/tests/i915/i915_pm_dc.c > > @@ -39,6 +39,10 @@ > > #define CHECK_DC6 (1 << 1) > > #define CHECK_DC3CO (1 << 2) > > > > +#define PWR_DOMAIN_INFO "i915_power_domain_info" > > + > > +char *pwr_dmn_info; > > not sure about this global variable but I also can't think in a > better > solution, Animesh any idea? pass data_t to check_dc_counter() replacing debugfs_fd and move pwr_dmn_info to data_t. With that: Reviewed-by: José Roberto de Souza <jose.souza@intel.com> > > > + > > typedef struct { > > double r, g, b; > > } color_t; > > @@ -210,7 +214,8 @@ static void check_dc_counter(int debugfs_fd, > > int > > dc_flag, uint32_t prev_dc_count > > snprintf(tmp, sizeof(tmp), "%s", dc_flag & CHECK_DC3CO ? > > "DC3CO" : > > (dc_flag & CHECK_DC5 ? "DC5" : "DC6")); > > igt_assert_f(dc_state_wait_entry(debugfs_fd, dc_flag, > > prev_dc_count), > > - "%s state is not achieved\n", tmp); > > + "%s state is not achieved\n%s:\n%s\n", tmp, > > PWR_DOMAIN_INFO, > > + pwr_dmn_info = igt_sysfs_get(debugfs_fd, > > PWR_DOMAIN_INFO)); > > } > > > > static void setup_videoplayback(data_t *data) > > @@ -441,6 +446,8 @@ int main(int argc, char *argv[]) > > } > > > > igt_fixture { > > + if (pwr_dmn_info) > > + free(pwr_dmn_info); > > nitpick: free() handles NULL, no need of the check here. > > > close(data.debugfs_fd); > > close(data.msr_fd); > > display_fini(&data); > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/2] tests/i915_pm_dc: psr required only for dc*-psr tests 2020-02-20 13:00 [igt-dev] [PATCH i-g-t v2 0/2] DC states IGT misc Anshuman Gupta 2020-02-20 13:00 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures Anshuman Gupta @ 2020-02-20 13:00 ` Anshuman Gupta 2020-02-20 21:13 ` Souza, Jose 2020-02-20 14:18 ` [igt-dev] ✓ Fi.CI.BAT: success for DC states IGT misc (rev3) Patchwork 2020-02-22 16:54 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 1 reply; 8+ messages in thread From: Anshuman Gupta @ 2020-02-20 13:00 UTC (permalink / raw) To: igt-dev DPMS igt tests were skipping for non-psr panels due to psr_sink_support sink check added to igt_fixture() at commit <6cbe6af372a01be63121056679d540436ffd0b64>. DPMS dc state igt test don't require psr_sink_support, as it validates DC states with all display being DPMS off. Removing the psr sink check from igt_fixture and adding it only for dc*- psr tests. v2: - Adding psr sink check to dc3co and moving ahead it in dc5/6 psr tests. [Jose] Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Cc: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_dc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c index fc6faa16..dcaf82f8 100644 --- a/tests/i915/i915_pm_dc.c +++ b/tests/i915/i915_pm_dc.c @@ -398,7 +398,6 @@ int main(int argc, char *argv[]) igt_require(igt_setup_runtime_pm(data.drm_fd)); igt_require(igt_pm_dmc_loaded(data.debugfs_fd)); igt_display_require(&data.display, data.drm_fd); - igt_require(psr_sink_support(data.debugfs_fd, PSR_MODE_1)); /* Make sure our Kernel supports MSR and the module is loaded */ igt_require(igt_kmod_load("msr", NULL) == 0); @@ -410,12 +409,14 @@ int main(int argc, char *argv[]) igt_describe("In this test we make sure that system enters DC3CO " "when PSR2 is active and system is in SLEEP state"); igt_subtest("dc3co-vpb-simulation") { + igt_require(psr_sink_support(data.debugfs_fd, PSR_MODE_2)); test_dc3co_vpb_simulation(&data); } igt_describe("This test validates display engine entry to DC5 state " "while PSR is active"); igt_subtest("dc5-psr") { + igt_require(psr_sink_support(data.debugfs_fd, PSR_MODE_1)); data.op_psr_mode = PSR_MODE_1; psr_enable(data.debugfs_fd, data.op_psr_mode); test_dc_state_psr(&data, CHECK_DC5); @@ -424,6 +425,7 @@ int main(int argc, char *argv[]) igt_describe("This test validates display engine entry to DC6 state " "while PSR is active"); igt_subtest("dc6-psr") { + igt_require(psr_sink_support(data.debugfs_fd, PSR_MODE_1)); data.op_psr_mode = PSR_MODE_1; psr_enable(data.debugfs_fd, data.op_psr_mode); igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd), -- 2.24.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/2] tests/i915_pm_dc: psr required only for dc*-psr tests 2020-02-20 13:00 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/i915_pm_dc: psr required only for dc*-psr tests Anshuman Gupta @ 2020-02-20 21:13 ` Souza, Jose 0 siblings, 0 replies; 8+ messages in thread From: Souza, Jose @ 2020-02-20 21:13 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Gupta, Anshuman On Thu, 2020-02-20 at 18:30 +0530, Anshuman Gupta wrote: > DPMS igt tests were skipping for non-psr panels due to > psr_sink_support sink check added to igt_fixture() at > commit <6cbe6af372a01be63121056679d540436ffd0b64>. > DPMS dc state igt test don't require psr_sink_support, as it > validates DC states with all display being DPMS off. > Removing the psr sink check from igt_fixture and adding > it only for dc*- psr tests. > > v2: > - Adding psr sink check to dc3co and moving ahead it > in dc5/6 psr tests. [Jose] Reviewed-by: José Roberto de Souza <jose.souza@intel.com> > > Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com> > Cc: José Roberto de Souza <jose.souza@intel.com> > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/i915/i915_pm_dc.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c > index fc6faa16..dcaf82f8 100644 > --- a/tests/i915/i915_pm_dc.c > +++ b/tests/i915/i915_pm_dc.c > @@ -398,7 +398,6 @@ int main(int argc, char *argv[]) > igt_require(igt_setup_runtime_pm(data.drm_fd)); > igt_require(igt_pm_dmc_loaded(data.debugfs_fd)); > igt_display_require(&data.display, data.drm_fd); > - igt_require(psr_sink_support(data.debugfs_fd, > PSR_MODE_1)); > /* Make sure our Kernel supports MSR and the module is > loaded */ > igt_require(igt_kmod_load("msr", NULL) == 0); > > @@ -410,12 +409,14 @@ int main(int argc, char *argv[]) > igt_describe("In this test we make sure that system enters > DC3CO " > "when PSR2 is active and system is in SLEEP > state"); > igt_subtest("dc3co-vpb-simulation") { > + igt_require(psr_sink_support(data.debugfs_fd, > PSR_MODE_2)); > test_dc3co_vpb_simulation(&data); > } > > igt_describe("This test validates display engine entry to DC5 > state " > "while PSR is active"); > igt_subtest("dc5-psr") { > + igt_require(psr_sink_support(data.debugfs_fd, > PSR_MODE_1)); > data.op_psr_mode = PSR_MODE_1; > psr_enable(data.debugfs_fd, data.op_psr_mode); > test_dc_state_psr(&data, CHECK_DC5); > @@ -424,6 +425,7 @@ int main(int argc, char *argv[]) > igt_describe("This test validates display engine entry to DC6 > state " > "while PSR is active"); > igt_subtest("dc6-psr") { > + igt_require(psr_sink_support(data.debugfs_fd, > PSR_MODE_1)); > data.op_psr_mode = PSR_MODE_1; > psr_enable(data.debugfs_fd, data.op_psr_mode); > igt_require_f(igt_pm_pc8_plus_residencies_enabled(data. > msr_fd), _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for DC states IGT misc (rev3) 2020-02-20 13:00 [igt-dev] [PATCH i-g-t v2 0/2] DC states IGT misc Anshuman Gupta 2020-02-20 13:00 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures Anshuman Gupta 2020-02-20 13:00 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/i915_pm_dc: psr required only for dc*-psr tests Anshuman Gupta @ 2020-02-20 14:18 ` Patchwork 2020-02-22 16:54 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2020-02-20 14:18 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: DC states IGT misc (rev3) URL : https://patchwork.freedesktop.org/series/73509/ State : success == Summary == CI Bug Log - changes from CI_DRM_7973 -> IGTPW_4194 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/index.html Known issues ------------ Here are the changes found in IGTPW_4194 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_close_race@basic-threads: - fi-byt-n2820: [PASS][1] -> [INCOMPLETE][2] ([i915#45]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-byt-n2820/igt@gem_close_race@basic-threads.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-byt-n2820/igt@gem_close_race@basic-threads.html * igt@i915_pm_rpm@module-reload: - fi-skl-6770hq: [PASS][3] -> [DMESG-WARN][4] ([i915#92]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-cml-u2: [PASS][5] -> [FAIL][6] ([i915#217]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-cml-u2/igt@kms_chamelium@common-hpd-after-suspend.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-cml-u2/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence: - fi-skl-6770hq: [PASS][7] -> [SKIP][8] ([fdo#109271]) +5 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-pipe-b: - fi-skl-6770hq: [PASS][9] -> [DMESG-WARN][10] ([i915#106]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-b.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-b.html * igt@prime_self_import@basic-llseek-size: - fi-tgl-y: [PASS][11] -> [DMESG-WARN][12] ([CI#94] / [i915#402]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s4-devices: - fi-tgl-y: [FAIL][13] ([CI#94]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html * igt@i915_selftest@live_gem_contexts: - fi-cml-s: [DMESG-FAIL][15] ([i915#877]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-cml-s/igt@i915_selftest@live_gem_contexts.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-cml-s/igt@i915_selftest@live_gem_contexts.html * igt@i915_selftest@live_sanitycheck: - fi-icl-u3: [DMESG-WARN][17] ([i915#585]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [FAIL][19] ([i915#217]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html * igt@prime_self_import@basic-llseek-bad: - fi-tgl-y: [DMESG-WARN][21] ([CI#94] / [i915#402]) -> [PASS][22] +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-tgl-y/igt@prime_self_import@basic-llseek-bad.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-tgl-y/igt@prime_self_import@basic-llseek-bad.html #### Warnings #### * igt@amdgpu/amd_prime@amd-to-i915: - fi-icl-u3: [SKIP][23] ([fdo#109315]) -> [SKIP][24] ([fdo#109315] / [i915#585]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-icl-u3/igt@amdgpu/amd_prime@amd-to-i915.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-icl-u3/igt@amdgpu/amd_prime@amd-to-i915.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][25] ([fdo#111407]) -> [FAIL][26] ([fdo#111096] / [i915#323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 [i915#106]: https://gitlab.freedesktop.org/drm/intel/issues/106 [i915#217]: https://gitlab.freedesktop.org/drm/intel/issues/217 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#45]: https://gitlab.freedesktop.org/drm/intel/issues/45 [i915#585]: https://gitlab.freedesktop.org/drm/intel/issues/585 [i915#877]: https://gitlab.freedesktop.org/drm/intel/issues/877 [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 Participating hosts (49 -> 47) ------------------------------ Additional (4): fi-kbl-soraka fi-skl-lmem fi-ivb-3770 fi-pnv-d510 Missing (6): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5453 -> IGTPW_4194 CI-20190529: 20190529 CI_DRM_7973: 07350317e4b2be54b1de7f1e73f77875df5e43f3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4194: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/index.html IGT_5453: cae9a5881ed2c5be2c2518a255740b612a927f9a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for DC states IGT misc (rev3) 2020-02-20 13:00 [igt-dev] [PATCH i-g-t v2 0/2] DC states IGT misc Anshuman Gupta ` (2 preceding siblings ...) 2020-02-20 14:18 ` [igt-dev] ✓ Fi.CI.BAT: success for DC states IGT misc (rev3) Patchwork @ 2020-02-22 16:54 ` Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2020-02-22 16:54 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev == Series Details == Series: DC states IGT misc (rev3) URL : https://patchwork.freedesktop.org/series/73509/ State : success == Summary == CI Bug Log - changes from CI_DRM_7973_full -> IGTPW_4194_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_4194_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4194_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_4194/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4194_full: ### IGT changes ### #### Warnings #### * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][1] ([i915#588]) -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html Known issues ------------ Here are the changes found in IGTPW_4194_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#110841]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb8/igt@gem_ctx_shared@exec-single-timeline-bsd.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#112146]) +6 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb2/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@promotion-bsd1: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109276]) +14 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb2/igt@gem_exec_schedule@promotion-bsd1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb8/igt@gem_exec_schedule@promotion-bsd1.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-hsw: [PASS][9] -> [FAIL][10] ([i915#694]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-hsw5/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-hsw6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][11] -> [FAIL][12] ([i915#454]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb1/igt@i915_pm_dc@dc6-psr.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb2/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@fences: - shard-iclb: [PASS][13] -> [INCOMPLETE][14] ([i915#189]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb1/igt@i915_pm_rpm@fences.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb2/igt@i915_pm_rpm@fences.html * igt@i915_pm_rps@waitboost: - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#413]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb7/igt@i915_pm_rps@waitboost.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb8/igt@i915_pm_rps@waitboost.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][17] -> [DMESG-WARN][18] ([i915#180]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding: - shard-apl: [PASS][19] -> [FAIL][20] ([i915#54]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding.html * igt@kms_flip@flip-vs-expired-vblank: - shard-glk: [PASS][21] -> [FAIL][22] ([i915#79]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk6/igt@kms_flip@flip-vs-expired-vblank.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk6/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-modeset-vs-hang-interruptible: - shard-glk: [PASS][23] -> [TIMEOUT][24] ([fdo#112271]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk6/igt@kms_flip@flip-vs-modeset-vs-hang-interruptible.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk2/igt@kms_flip@flip-vs-modeset-vs-hang-interruptible.html * igt@kms_flip@flip-vs-panning-vs-hang: - shard-tglb: [PASS][25] -> [TIMEOUT][26] ([fdo#112271] / [i915#561]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-tglb8/igt@kms_flip@flip-vs-panning-vs-hang.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-tglb2/igt@kms_flip@flip-vs-panning-vs-hang.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render: - shard-tglb: [PASS][27] -> [SKIP][28] ([i915#668]) +4 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-tglb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-tglb2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#899]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk7/igt@kms_plane_lowres@pipe-a-tiling-x.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk5/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [PASS][33] -> [SKIP][34] ([fdo#109441]) +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@perf@gen12-mi-rpc: - shard-tglb: [PASS][35] -> [TIMEOUT][36] ([fdo#112271] / [i915#1085]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-tglb8/igt@perf@gen12-mi-rpc.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-tglb1/igt@perf@gen12-mi-rpc.html * igt@perf_pmu@busy-vcs1: - shard-iclb: [PASS][37] -> [SKIP][38] ([fdo#112080]) +11 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb4/igt@perf_pmu@busy-vcs1.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb3/igt@perf_pmu@busy-vcs1.html * igt@perf_pmu@cpu-hotplug: - shard-hsw: [PASS][39] -> [INCOMPLETE][40] ([i915#1176] / [i915#61]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-hsw1/igt@perf_pmu@cpu-hotplug.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-hsw5/igt@perf_pmu@cpu-hotplug.html #### Possible fixes #### * igt@gem_exec_balancer@hang: - shard-iclb: [FAIL][41] ([i915#1277]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb4/igt@gem_exec_balancer@hang.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb2/igt@gem_exec_balancer@hang.html - shard-tglb: [FAIL][43] ([i915#1277]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-tglb8/igt@gem_exec_balancer@hang.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-tglb2/igt@gem_exec_balancer@hang.html * igt@gem_exec_parallel@vcs1-fds: - shard-iclb: [SKIP][45] ([fdo#112080]) -> [PASS][46] +8 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb6/igt@gem_exec_parallel@vcs1-fds.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb1/igt@gem_exec_parallel@vcs1-fds.html * {igt@gem_exec_schedule@implicit-write-read-bsd1}: - shard-iclb: [SKIP][47] ([fdo#109276] / [i915#677]) -> [PASS][48] +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb8/igt@gem_exec_schedule@implicit-write-read-bsd1.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb1/igt@gem_exec_schedule@implicit-write-read-bsd1.html * igt@gem_exec_schedule@in-order-bsd: - shard-iclb: [SKIP][49] ([fdo#112146]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb1/igt@gem_exec_schedule@in-order-bsd.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb8/igt@gem_exec_schedule@in-order-bsd.html * igt@gem_exec_schedule@independent-bsd2: - shard-iclb: [SKIP][51] ([fdo#109276]) -> [PASS][52] +18 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb6/igt@gem_exec_schedule@independent-bsd2.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb1/igt@gem_exec_schedule@independent-bsd2.html * igt@gem_exec_schedule@pi-distinct-iova-bsd: - shard-iclb: [SKIP][53] ([i915#677]) -> [PASS][54] +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb4/igt@gem_exec_schedule@pi-distinct-iova-bsd.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb3/igt@gem_exec_schedule@pi-distinct-iova-bsd.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [FAIL][55] ([i915#644]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html - shard-apl: [FAIL][57] ([i915#644]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-apl7/igt@gem_ppgtt@flink-and-close-vma-leak.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-apl2/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_render_copy_redux@normal: - shard-hsw: [FAIL][59] ([i915#694]) -> [PASS][60] +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-hsw5/igt@gem_render_copy_redux@normal.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-hsw2/igt@gem_render_copy_redux@normal.html * igt@gem_workarounds@suspend-resume-context: - shard-kbl: [INCOMPLETE][61] ([fdo#103665]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-kbl3/igt@gem_workarounds@suspend-resume-context.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-kbl6/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_dc@dc5-dpms: - shard-glk: [SKIP][63] ([fdo#109271]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk7/igt@i915_pm_dc@dc5-dpms.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk5/igt@i915_pm_dc@dc5-dpms.html - shard-apl: [SKIP][65] ([fdo#109271]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-apl7/igt@i915_pm_dc@dc5-dpms.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-apl3/igt@i915_pm_dc@dc5-dpms.html - shard-kbl: [SKIP][67] ([fdo#109271]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-kbl6/igt@i915_pm_dc@dc5-dpms.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-kbl2/igt@i915_pm_dc@dc5-dpms.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: [FAIL][69] ([fdo#103375]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk6/igt@i915_pm_rpm@system-suspend-execbuf.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk3/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@reset: - shard-tglb: [FAIL][71] ([i915#413]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-tglb7/igt@i915_pm_rps@reset.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-tglb5/igt@i915_pm_rps@reset.html * igt@kms_color@pipe-a-ctm-blue-to-red: - shard-kbl: [FAIL][73] ([i915#129]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-kbl6/igt@kms_color@pipe-a-ctm-blue-to-red.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-kbl3/igt@kms_color@pipe-a-ctm-blue-to-red.html - shard-apl: [FAIL][75] ([i915#129]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-apl2/igt@kms_color@pipe-a-ctm-blue-to-red.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-apl6/igt@kms_color@pipe-a-ctm-blue-to-red.html * igt@kms_cursor_crc@pipe-a-cursor-alpha-opaque: - shard-apl: [FAIL][77] ([i915#54]) -> [PASS][78] +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-alpha-opaque.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-apl8/igt@kms_cursor_crc@pipe-a-cursor-alpha-opaque.html - shard-glk: [FAIL][79] ([i915#54]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk4/igt@kms_cursor_crc@pipe-a-cursor-alpha-opaque.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk5/igt@kms_cursor_crc@pipe-a-cursor-alpha-opaque.html * igt@kms_cursor_crc@pipe-c-cursor-256x85-sliding: - shard-kbl: [FAIL][81] ([i915#54]) -> [PASS][82] +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-256x85-sliding.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-256x85-sliding.html * igt@kms_flip@2x-flip-vs-suspend: - shard-hsw: [INCOMPLETE][83] ([i915#61]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-hsw5/igt@kms_flip@2x-flip-vs-suspend.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-hsw2/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-panning: - shard-kbl: [DMESG-WARN][85] -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-kbl4/igt@kms_flip@flip-vs-panning.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-kbl2/igt@kms_flip@flip-vs-panning.html - shard-apl: [DMESG-WARN][87] -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-apl3/igt@kms_flip@flip-vs-panning.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-apl8/igt@kms_flip@flip-vs-panning.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-glk: [FAIL][89] ([i915#49]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-apl: [DMESG-WARN][91] ([i915#180]) -> [PASS][92] +6 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-tglb: [SKIP][93] ([i915#668]) -> [PASS][94] +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-kbl: [DMESG-WARN][95] ([i915#180]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane_lowres@pipe-a-tiling-y: - shard-glk: [FAIL][97] ([i915#899]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk2/igt@kms_plane_lowres@pipe-a-tiling-y.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk9/igt@kms_plane_lowres@pipe-a-tiling-y.html * igt@kms_psr@psr2_suspend: - shard-iclb: [SKIP][99] ([fdo#109441]) -> [PASS][100] +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb7/igt@kms_psr@psr2_suspend.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb2/igt@kms_psr@psr2_suspend.html * igt@perf_pmu@busy-idle-check-all-vcs0: - shard-glk: [FAIL][101] -> [PASS][102] +7 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk6/igt@perf_pmu@busy-idle-check-all-vcs0.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk8/igt@perf_pmu@busy-idle-check-all-vcs0.html * igt@perf_pmu@cpu-hotplug: - shard-glk: [TIMEOUT][103] ([fdo#111561] / [fdo#112271]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-glk6/igt@perf_pmu@cpu-hotplug.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-glk9/igt@perf_pmu@cpu-hotplug.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][105] ([fdo#112080]) -> [FAIL][106] ([IGT#28]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-iclb6/igt@gem_ctx_isolation@vcs1-nonpriv.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@i915_pm_dc@dc6-dpms: - shard-kbl: [SKIP][107] ([fdo#109271]) -> [FAIL][108] ([i915#454]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-kbl7/igt@i915_pm_dc@dc6-dpms.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html * igt@runner@aborted: - shard-hsw: [FAIL][109] ([fdo#111012]) -> [FAIL][110] ([i915#1176]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7973/shard-hsw5/igt@runner@aborted.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/shard-hsw5/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). [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#111012]: https://bugs.freedesktop.org/show_bug.cgi?id=111012 [fdo#111561]: https://bugs.freedesktop.org/show_bug.cgi?id=111561 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085 [i915#1176]: https://gitlab.freedesktop.org/drm/intel/issues/1176 [i915#1197]: https://gitlab.freedesktop.org/drm/intel/issues/1197 [i915#1239]: https://gitlab.freedesktop.org/drm/intel/issues/1239 [i915#1277]: https://gitlab.freedesktop.org/drm/intel/issues/1277 [i915#129]: https://gitlab.freedesktop.org/drm/intel/issues/129 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#189]: https://gitlab.freedesktop.org/drm/intel/issues/189 [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#561]: https://gitlab.freedesktop.org/drm/intel/issues/561 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644 [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#679]: https://gitlab.freedesktop.org/drm/intel/issues/679 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5453 -> IGTPW_4194 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7973: 07350317e4b2be54b1de7f1e73f77875df5e43f3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4194: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4194/index.html IGT_5453: cae9a5881ed2c5be2c2518a255740b612a927f9a @ 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_4194/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2020-02-26 20:31 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-02-20 13:00 [igt-dev] [PATCH i-g-t v2 0/2] DC states IGT misc Anshuman Gupta 2020-02-20 13:00 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures Anshuman Gupta 2020-02-20 21:25 ` Souza, Jose 2020-02-26 20:31 ` Souza, Jose 2020-02-20 13:00 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/i915_pm_dc: psr required only for dc*-psr tests Anshuman Gupta 2020-02-20 21:13 ` Souza, Jose 2020-02-20 14:18 ` [igt-dev] ✓ Fi.CI.BAT: success for DC states IGT misc (rev3) Patchwork 2020-02-22 16:54 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox