* [igt-dev] [PATCH i-g-t 0/1] tests: update the test with close() for prime fd
@ 2020-01-09 7:04 Mohammed Khajapasha
2020-01-09 7:04 ` [igt-dev] [PATCH i-g-t 1/1] " Mohammed Khajapasha
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Mohammed Khajapasha @ 2020-01-09 7:04 UTC (permalink / raw)
To: igt-dev
Include close() for prime file descriptor and
call mumap() in mmap() success case only.
Mohammed Khajapasha (1):
tests: update the test with close() for prime fd
tests/prime_mmap_kms.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
--
2.24.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread* [igt-dev] [PATCH i-g-t 1/1] tests: update the test with close() for prime fd 2020-01-09 7:04 [igt-dev] [PATCH i-g-t 0/1] tests: update the test with close() for prime fd Mohammed Khajapasha @ 2020-01-09 7:04 ` Mohammed Khajapasha 2020-01-09 10:25 ` Chris Wilson 2020-01-09 10:16 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-01-09 19:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Mohammed Khajapasha @ 2020-01-09 7:04 UTC (permalink / raw) To: igt-dev Include close() for prime file descriptor and call mumap() in mmap() success case only. Signed-off-by: Mohammed Khajapasha <mohammed.khajapasha@intel.com> --- tests/prime_mmap_kms.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tests/prime_mmap_kms.c b/tests/prime_mmap_kms.c index 29aec499..746e2abe 100644 --- a/tests/prime_mmap_kms.c +++ b/tests/prime_mmap_kms.c @@ -207,6 +207,9 @@ static void run_test(gpu_process_t *gpu) igt_waitchildren(); igt_debug_wait_for_keypress("paint"); + + close(prime_fd); + cleanup_crtc(gpu); /* once is enough */ @@ -227,11 +230,12 @@ check_for_dma_buf_mmap(int fd) handle = gem_create(fd, 4096); dma_buf_fd = prime_handle_to_fd(fd, handle); ptr = mmap(NULL, 4096, PROT_READ, MAP_SHARED, dma_buf_fd, 0); - if (ptr != MAP_FAILED) + if (ptr != MAP_FAILED) { ret = 0; - munmap(ptr, 4096); - gem_close(fd, handle); + munmap(ptr, 4096); + } close(dma_buf_fd); + gem_close(fd, handle); return ret; } -- 2.24.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] tests: update the test with close() for prime fd 2020-01-09 7:04 ` [igt-dev] [PATCH i-g-t 1/1] " Mohammed Khajapasha @ 2020-01-09 10:25 ` Chris Wilson 0 siblings, 0 replies; 5+ messages in thread From: Chris Wilson @ 2020-01-09 10:25 UTC (permalink / raw) To: Mohammed Khajapasha, igt-dev Quoting Mohammed Khajapasha (2020-01-09 07:04:41) > Include close() for prime file descriptor and > call mumap() in mmap() success case only. > > Signed-off-by: Mohammed Khajapasha <mohammed.khajapasha@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests: update the test with close() for prime fd 2020-01-09 7:04 [igt-dev] [PATCH i-g-t 0/1] tests: update the test with close() for prime fd Mohammed Khajapasha 2020-01-09 7:04 ` [igt-dev] [PATCH i-g-t 1/1] " Mohammed Khajapasha @ 2020-01-09 10:16 ` Patchwork 2020-01-09 19:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-01-09 10:16 UTC (permalink / raw) To: Mohammed Khajapasha; +Cc: igt-dev == Series Details == Series: tests: update the test with close() for prime fd URL : https://patchwork.freedesktop.org/series/71805/ State : success == Summary == CI Bug Log - changes from CI_DRM_7705 -> IGTPW_3907 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3907: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_ctx_exec@basic: - {fi-ehl-1}: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/fi-ehl-1/igt@gem_ctx_exec@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/fi-ehl-1/igt@gem_ctx_exec@basic.html Known issues ------------ Here are the changes found in IGTPW_3907 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_render_linear_blits@basic: - fi-icl-dsi: [PASS][3] -> [DMESG-WARN][4] ([i915#109]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/fi-icl-dsi/igt@gem_render_linear_blits@basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/fi-icl-dsi/igt@gem_render_linear_blits@basic.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [PASS][5] -> [FAIL][6] ([fdo#111096] / [i915#323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html #### Possible fixes #### * igt@gem_close_race@basic-threads: - fi-byt-j1900: [TIMEOUT][7] ([i915#816]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/fi-byt-j1900/igt@gem_close_race@basic-threads.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/fi-byt-j1900/igt@gem_close_race@basic-threads.html * igt@i915_module_load@reload-with-fault-injection: - fi-cfl-8700k: [INCOMPLETE][9] ([i915#505]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/fi-cfl-8700k/igt@i915_module_load@reload-with-fault-injection.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/fi-cfl-8700k/igt@i915_module_load@reload-with-fault-injection.html - fi-kbl-x1275: [INCOMPLETE][11] ([i915#879]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/fi-kbl-x1275/igt@i915_module_load@reload-with-fault-injection.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/fi-kbl-x1275/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@module-reload: - fi-kbl-guc: [SKIP][13] ([fdo#109271]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html #### Warnings #### * igt@i915_selftest@live_blt: - fi-hsw-4770r: [DMESG-FAIL][15] ([i915#563]) -> [DMESG-FAIL][16] ([i915#725]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/fi-hsw-4770r/igt@i915_selftest@live_blt.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/fi-hsw-4770r/igt@i915_selftest@live_blt.html - fi-hsw-4770: [DMESG-FAIL][17] ([i915#553] / [i915#725]) -> [DMESG-FAIL][18] ([i915#770]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/fi-hsw-4770/igt@i915_selftest@live_blt.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/fi-hsw-4770/igt@i915_selftest@live_blt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [i915#109]: https://gitlab.freedesktop.org/drm/intel/issues/109 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#505]: https://gitlab.freedesktop.org/drm/intel/issues/505 [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553 [i915#563]: https://gitlab.freedesktop.org/drm/intel/issues/563 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#770]: https://gitlab.freedesktop.org/drm/intel/issues/770 [i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816 [i915#879]: https://gitlab.freedesktop.org/drm/intel/issues/879 Participating hosts (38 -> 45) ------------------------------ Additional (12): fi-bdw-5557u fi-bsw-n3050 fi-hsw-peppy fi-snb-2520m fi-gdg-551 fi-ivb-3770 fi-bsw-kefka fi-skl-lmem fi-blb-e6850 fi-kbl-r fi-skl-6600u fi-snb-2600 Missing (5): fi-skl-6770hq fi-byt-squawks fi-ctg-p8600 fi-pnv-d510 fi-kbl-7560u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5358 -> IGTPW_3907 CI-20190529: 20190529 CI_DRM_7705: b57ea8cadecd3444690439b4703d964afca476e1 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3907: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/index.html IGT_5358: c6fc013f414b806175dc4143c58ab445e5235ea5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests: update the test with close() for prime fd 2020-01-09 7:04 [igt-dev] [PATCH i-g-t 0/1] tests: update the test with close() for prime fd Mohammed Khajapasha 2020-01-09 7:04 ` [igt-dev] [PATCH i-g-t 1/1] " Mohammed Khajapasha 2020-01-09 10:16 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2020-01-09 19:24 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-01-09 19:24 UTC (permalink / raw) To: Mohammed Khajapasha; +Cc: igt-dev == Series Details == Series: tests: update the test with close() for prime fd URL : https://patchwork.freedesktop.org/series/71805/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7705_full -> IGTPW_3907_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_3907_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_3907_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_3907/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3907_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane@pixel-format-pipe-d-planes: - shard-tglb: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb7/igt@kms_plane@pixel-format-pipe-d-planes.html Known issues ------------ Here are the changes found in IGTPW_3907_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@vcs1-mixed-process: - shard-iclb: [PASS][2] -> [SKIP][3] ([fdo#109276] / [fdo#112080]) +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb1/igt@gem_ctx_persistence@vcs1-mixed-process.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb6/igt@gem_ctx_persistence@vcs1-mixed-process.html * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][4] -> [SKIP][5] ([fdo#110841]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb3/igt@gem_ctx_shared@exec-single-timeline-bsd.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_ctx_shared@q-smoketest-bsd2: - shard-tglb: [PASS][6] -> [INCOMPLETE][7] ([i915#461]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb2/igt@gem_ctx_shared@q-smoketest-bsd2.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb6/igt@gem_ctx_shared@q-smoketest-bsd2.html * igt@gem_exec_schedule@in-order-bsd: - shard-iclb: [PASS][8] -> [SKIP][9] ([fdo#112146]) +4 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb3/igt@gem_exec_schedule@in-order-bsd.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb2/igt@gem_exec_schedule@in-order-bsd.html * igt@gem_exec_schedule@pi-common-bsd: - shard-iclb: [PASS][10] -> [SKIP][11] ([i915#677]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb7/igt@gem_exec_schedule@pi-common-bsd.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb4/igt@gem_exec_schedule@pi-common-bsd.html * igt@gem_exec_schedule@preempt-queue-contexts-chain-render: - shard-tglb: [PASS][12] -> [INCOMPLETE][13] ([fdo#111677] / [i915#472]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb9/igt@gem_exec_schedule@preempt-queue-contexts-chain-render.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-render.html * igt@gem_exec_schedule@promotion-bsd1: - shard-iclb: [PASS][14] -> [SKIP][15] ([fdo#109276]) +15 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb2/igt@gem_exec_schedule@promotion-bsd1.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb3/igt@gem_exec_schedule@promotion-bsd1.html * igt@gem_ppgtt@blt-vs-render-ctxn: - shard-tglb: [PASS][16] -> [INCOMPLETE][17] ([i915#470] / [i915#475]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb8/igt@gem_ppgtt@blt-vs-render-ctxn.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb3/igt@gem_ppgtt@blt-vs-render-ctxn.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-apl: [PASS][18] -> [FAIL][19] ([i915#644]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-apl8/igt@gem_ppgtt@flink-and-close-vma-leak.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-apl8/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [PASS][20] -> [FAIL][21] ([i915#454]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb4/igt@i915_pm_dc@dc6-dpms.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rps@reset: - shard-iclb: [PASS][22] -> [FAIL][23] ([i915#413]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb2/igt@i915_pm_rps@reset.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb8/igt@i915_pm_rps@reset.html * igt@kms_color@pipe-c-ctm-blue-to-red: - shard-tglb: [PASS][24] -> [DMESG-WARN][25] ([i915#402]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb2/igt@kms_color@pipe-c-ctm-blue-to-red.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb7/igt@kms_color@pipe-c-ctm-blue-to-red.html * igt@kms_cursor_crc@pipe-c-cursor-128x128-random: - shard-apl: [PASS][26] -> [FAIL][27] ([i915#54]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-128x128-random.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-128x128-random.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-glk: [PASS][28] -> [FAIL][29] ([i915#79]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-kbl: [PASS][30] -> [DMESG-WARN][31] ([i915#180]) +4 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-suspend.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-apl: [PASS][32] -> [DMESG-WARN][33] ([i915#180]) +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-tglb: [PASS][34] -> [FAIL][35] ([i915#49]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-iclb: [PASS][36] -> [DMESG-WARN][37] ([fdo#111764]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_psr2_su@page_flip: - shard-iclb: [PASS][38] -> [SKIP][39] ([fdo#109642] / [fdo#111068]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb2/igt@kms_psr2_su@page_flip.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb8/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_suspend: - shard-iclb: [PASS][40] -> [SKIP][41] ([fdo#109441]) +2 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb2/igt@kms_psr@psr2_suspend.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb8/igt@kms_psr@psr2_suspend.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [PASS][42] -> [SKIP][43] ([fdo#112080]) +9 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb1/igt@perf_pmu@busy-no-semaphores-vcs1.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb6/igt@perf_pmu@busy-no-semaphores-vcs1.html #### Possible fixes #### * igt@gem_ctx_isolation@vcs1-none: - shard-iclb: [SKIP][44] ([fdo#109276] / [fdo#112080]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb3/igt@gem_ctx_isolation@vcs1-none.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb2/igt@gem_ctx_isolation@vcs1-none.html * igt@gem_eio@kms: - shard-tglb: [INCOMPLETE][46] ([i915#476]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb8/igt@gem_eio@kms.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb3/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-tglb: [INCOMPLETE][48] ([i915#470]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb6/igt@gem_eio@reset-stress.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb3/igt@gem_eio@reset-stress.html * igt@gem_exec_await@wide-all: - shard-tglb: [INCOMPLETE][50] ([fdo#111736] / [i915#472]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb8/igt@gem_exec_await@wide-all.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb3/igt@gem_exec_await@wide-all.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][52] ([fdo#110854]) -> [PASS][53] [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb7/igt@gem_exec_balancer@smoke.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb2/igt@gem_exec_balancer@smoke.html * igt@gem_exec_create@forked: - shard-apl: [TIMEOUT][54] ([i915#940]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-apl1/igt@gem_exec_create@forked.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-apl4/igt@gem_exec_create@forked.html * igt@gem_exec_create@madvise: - shard-tglb: [INCOMPLETE][56] ([CI#80] / [i915#472]) -> [PASS][57] +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb1/igt@gem_exec_create@madvise.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb5/igt@gem_exec_create@madvise.html * igt@gem_exec_gttfill@basic: - shard-tglb: [INCOMPLETE][58] ([fdo#111593] / [i915#472]) -> [PASS][59] +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb6/igt@gem_exec_gttfill@basic.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb2/igt@gem_exec_gttfill@basic.html * igt@gem_exec_schedule@pi-distinct-iova-bsd: - shard-iclb: [SKIP][60] ([i915#677]) -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb2/igt@gem_exec_schedule@pi-distinct-iova-bsd.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb5/igt@gem_exec_schedule@pi-distinct-iova-bsd.html * igt@gem_exec_schedule@preempt-queue-contexts-vebox: - shard-tglb: [INCOMPLETE][62] ([fdo#111677] / [i915#472]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb9/igt@gem_exec_schedule@preempt-queue-contexts-vebox.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb8/igt@gem_exec_schedule@preempt-queue-contexts-vebox.html * igt@gem_exec_schedule@smoketest-bsd1: - shard-tglb: [INCOMPLETE][64] ([i915#463] / [i915#472]) -> [PASS][65] [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb6/igt@gem_exec_schedule@smoketest-bsd1.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb5/igt@gem_exec_schedule@smoketest-bsd1.html * igt@gem_exec_schedule@wide-bsd: - shard-iclb: [SKIP][66] ([fdo#112146]) -> [PASS][67] +5 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb1/igt@gem_exec_schedule@wide-bsd.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb5/igt@gem_exec_schedule@wide-bsd.html * igt@gem_exec_suspend@basic-s0: - shard-tglb: [INCOMPLETE][68] ([i915#472]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb3/igt@gem_exec_suspend@basic-s0.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb8/igt@gem_exec_suspend@basic-s0.html * igt@gem_persistent_relocs@forked-thrashing: - shard-iclb: [FAIL][70] ([i915#520]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb8/igt@gem_persistent_relocs@forked-thrashing.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb1/igt@gem_persistent_relocs@forked-thrashing.html * igt@gem_userptr_blits@sync-unmap: - shard-snb: [DMESG-WARN][72] ([fdo#111870]) -> [PASS][73] [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-snb6/igt@gem_userptr_blits@sync-unmap.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-snb1/igt@gem_userptr_blits@sync-unmap.html * igt@gem_wait@await-vcs1: - shard-iclb: [SKIP][74] ([fdo#112080]) -> [PASS][75] +7 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb8/igt@gem_wait@await-vcs1.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb2/igt@gem_wait@await-vcs1.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [DMESG-WARN][76] ([i915#180]) -> [PASS][77] +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-glk: [FAIL][78] ([i915#79]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-tglb: [FAIL][80] ([i915#49]) -> [PASS][81] +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_plane@pixel-format-pipe-c-planes-source-clamping: - shard-tglb: [INCOMPLETE][82] -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb2/igt@kms_plane@pixel-format-pipe-c-planes-source-clamping.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb9/igt@kms_plane@pixel-format-pipe-c-planes-source-clamping.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [SKIP][84] ([fdo#109441]) -> [PASS][85] +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb5/igt@kms_psr@psr2_cursor_render.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb2/igt@kms_psr@psr2_cursor_render.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-kbl: [INCOMPLETE][86] ([fdo#103665]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@perf@oa-exponents: - shard-tglb: [FAIL][88] ([i915#84]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb6/igt@perf@oa-exponents.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb1/igt@perf@oa-exponents.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [SKIP][90] ([fdo#109276]) -> [PASS][91] +19 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb7/igt@prime_vgem@fence-wait-bsd2.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [FAIL][92] ([IGT#28]) -> [SKIP][93] ([fdo#109276] / [fdo#112080]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_ctx_isolation@vcs1-nonpriv-switch: - shard-iclb: [SKIP][94] ([fdo#109276] / [fdo#112080]) -> [FAIL][95] ([IGT#28]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html * igt@gem_eio@kms: - shard-snb: [INCOMPLETE][96] ([i915#82]) -> [DMESG-WARN][97] ([i915#444]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-snb4/igt@gem_eio@kms.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-snb4/igt@gem_eio@kms.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-snb: [DMESG-WARN][98] ([fdo#111870]) -> [DMESG-WARN][99] ([fdo#110789] / [fdo#111870]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-snb2/igt@gem_userptr_blits@dmabuf-unsync.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-snb5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@i915_pm_dc@dc5-dpms: - shard-snb: [SKIP][100] ([fdo#109271]) -> [INCOMPLETE][101] ([i915#82]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-snb4/igt@i915_pm_dc@dc5-dpms.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-snb2/igt@i915_pm_dc@dc5-dpms.html * igt@kms_atomic_transition@6x-modeset-transitions-nonblocking: - shard-tglb: [SKIP][102] ([fdo#112021]) -> [SKIP][103] ([fdo#112016] / [fdo#112021]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-tglb9/igt@kms_atomic_transition@6x-modeset-transitions-nonblocking.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-tglb7/igt@kms_atomic_transition@6x-modeset-transitions-nonblocking.html * igt@kms_cursor_crc@pipe-b-cursor-suspend: - shard-apl: [DMESG-WARN][104] ([i915#180]) -> [FAIL][105] ([i915#54]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [DMESG-WARN][106] ([fdo#107724]) -> [SKIP][107] ([fdo#109349]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7705/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-edp.html [CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80 [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [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#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111593]: https://bugs.freedesktop.org/show_bug.cgi?id=111593 [fdo#111677]: https://bugs.freedesktop.org/show_bug.cgi?id=111677 [fdo#111736]: https://bugs.freedesktop.org/show_bug.cgi?id=111736 [fdo#111764]: https://bugs.freedesktop.org/show_bug.cgi?id=111764 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#112016]: https://bugs.freedesktop.org/show_bug.cgi?id=112016 [fdo#112021]: https://bugs.freedesktop.org/show_bug.cgi?id=112021 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413 [i915#444]: https://gitlab.freedesktop.org/drm/intel/issues/444 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#461]: https://gitlab.freedesktop.org/drm/intel/issues/461 [i915#463]: https://gitlab.freedesktop.org/drm/intel/issues/463 [i915#470]: https://gitlab.freedesktop.org/drm/intel/issues/470 [i915#472]: https://gitlab.freedesktop.org/drm/intel/issues/472 [i915#475]: https://gitlab.freedesktop.org/drm/intel/issues/475 [i915#476]: https://gitlab.freedesktop.org/drm/intel/issues/476 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#520]: https://gitlab.freedesktop.org/drm/intel/issues/520 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82 [i915#84]: https://gitlab.freedesktop.org/drm/intel/issues/84 [i915#940]: https://gitlab.freedesktop.org/drm/intel/issues/940 Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5358 -> IGTPW_3907 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7705: b57ea8cadecd3444690439b4703d964afca476e1 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3907: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3907/index.html IGT_5358: c6fc013f414b806175dc4143c58ab445e5235ea5 @ 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_3907/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-01-09 19:24 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-01-09 7:04 [igt-dev] [PATCH i-g-t 0/1] tests: update the test with close() for prime fd Mohammed Khajapasha 2020-01-09 7:04 ` [igt-dev] [PATCH i-g-t 1/1] " Mohammed Khajapasha 2020-01-09 10:25 ` Chris Wilson 2020-01-09 10:16 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-01-09 19:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox