* [igt-dev] [PATCH i-g-t] .gitlab-ci: List test binaries with missing top-level description correctly @ 2019-09-04 13:39 Arkadiusz Hiler 2019-09-04 14:21 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-09-04 17:36 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 0 siblings, 2 replies; 3+ messages in thread From: Arkadiusz Hiler @ 2019-09-04 13:39 UTC (permalink / raw) To: igt-dev; +Cc: Petri Latvala Boolean logic with string is hard. Cc: Petri Latvala <petri.latvala@intel.com> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> --- .gitlab-ci/list_undocumented_tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci/list_undocumented_tests.py b/.gitlab-ci/list_undocumented_tests.py index ee836559..0ce3f330 100755 --- a/.gitlab-ci/list_undocumented_tests.py +++ b/.gitlab-ci/list_undocumented_tests.py @@ -47,12 +47,12 @@ def main(): for test in tests: subtests = get_subtests(testdir, test) - if subtests and subtests[0].name: - # no top level description + if subtests and subtests[0].name is None: + # top level description missing, list binary print(test) for name, description in subtests: - if not name: + if name is None: # top level description, skipping continue if "NO DOCUMENTATION!" in description: -- 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] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for .gitlab-ci: List test binaries with missing top-level description correctly 2019-09-04 13:39 [igt-dev] [PATCH i-g-t] .gitlab-ci: List test binaries with missing top-level description correctly Arkadiusz Hiler @ 2019-09-04 14:21 ` Patchwork 2019-09-04 17:36 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-09-04 14:21 UTC (permalink / raw) To: Arkadiusz Hiler; +Cc: igt-dev == Series Details == Series: .gitlab-ci: List test binaries with missing top-level description correctly URL : https://patchwork.freedesktop.org/series/66220/ State : success == Summary == CI Bug Log - changes from IGT_5170 -> IGTPW_3418 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/66220/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3418 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@gem_mmap_gtt@basic-copy: - fi-icl-u3: [DMESG-WARN][1] ([fdo#107724]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/fi-icl-u3/igt@gem_mmap_gtt@basic-copy.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/fi-icl-u3/igt@gem_mmap_gtt@basic-copy.html * igt@kms_chamelium@dp-crc-fast: - {fi-icl-u4}: [FAIL][3] ([fdo#111045]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/fi-icl-u4/igt@kms_chamelium@dp-crc-fast.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/fi-icl-u4/igt@kms_chamelium@dp-crc-fast.html * igt@kms_frontbuffer_tracking@basic: - {fi-icl-u4}: [FAIL][5] ([fdo#103167]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/fi-icl-u4/igt@kms_frontbuffer_tracking@basic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/fi-icl-u4/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#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [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 Participating hosts (53 -> 46) ------------------------------ Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5170 -> IGTPW_3418 CI-20190529: 20190529 CI_DRM_6834: 5b80d3f233a9c08d6fdff9cc51e25895a28e02f6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3418: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/ IGT_5170: 2520686d9f2299a3f2062a88da34747a42e0848d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for .gitlab-ci: List test binaries with missing top-level description correctly 2019-09-04 13:39 [igt-dev] [PATCH i-g-t] .gitlab-ci: List test binaries with missing top-level description correctly Arkadiusz Hiler 2019-09-04 14:21 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-09-04 17:36 ` Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-09-04 17:36 UTC (permalink / raw) To: Arkadiusz Hiler; +Cc: igt-dev == Series Details == Series: .gitlab-ci: List test binaries with missing top-level description correctly URL : https://patchwork.freedesktop.org/series/66220/ State : success == Summary == CI Bug Log - changes from IGT_5170_full -> IGTPW_3418_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/66220/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3418_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_switch@rcs0: - shard-iclb: [PASS][1] -> [INCOMPLETE][2] ([fdo#107713]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb7/igt@gem_ctx_switch@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb7/igt@gem_ctx_switch@rcs0.html * igt@gem_exec_schedule@preempt-other-bsd1: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#109276]) +18 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb2/igt@gem_exec_schedule@preempt-other-bsd1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb5/igt@gem_exec_schedule@preempt-other-bsd1.html * igt@gem_exec_schedule@promotion-bsd: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#111325]) +7 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb5/igt@gem_exec_schedule@promotion-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb2/igt@gem_exec_schedule@promotion-bsd.html * igt@i915_pm_rpm@fences: - shard-hsw: [PASS][7] -> [FAIL][8] ([fdo#111548]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-hsw2/igt@i915_pm_rpm@fences.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-hsw8/igt@i915_pm_rpm@fences.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][9] -> [DMESG-WARN][10] ([fdo#108566]) +4 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html - shard-snb: [PASS][11] -> [FAIL][12] ([fdo#103375]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-snb6/igt@i915_suspend@fence-restore-tiled2untiled.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-snb5/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen: - shard-apl: [PASS][13] -> [FAIL][14] ([fdo#103232]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html - shard-kbl: [PASS][15] -> [FAIL][16] ([fdo#103232]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html * igt@kms_flip@modeset-vs-vblank-race-interruptible: - shard-apl: [PASS][17] -> [FAIL][18] ([fdo#103060]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl6/igt@kms_flip@modeset-vs-vblank-race-interruptible.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl6/igt@kms_flip@modeset-vs-vblank-race-interruptible.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt: - shard-iclb: [PASS][19] -> [FAIL][20] ([fdo#103167]) +4 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [PASS][21] -> [FAIL][22] ([fdo#103375]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-iclb: [PASS][23] -> [FAIL][24] ([fdo#103166]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109441]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb3/igt@kms_psr@psr2_cursor_render.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-hsw: [PASS][27] -> [FAIL][28] ([fdo#103375]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-hsw2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-hsw8/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html #### Possible fixes #### * igt@gem_eio@suspend: - shard-apl: [FAIL][29] ([fdo#111550]) -> [PASS][30] +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl4/igt@gem_eio@suspend.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl2/igt@gem_eio@suspend.html - shard-snb: [FAIL][31] ([fdo#107918] / [fdo#111550]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-snb2/igt@gem_eio@suspend.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-snb6/igt@gem_eio@suspend.html - shard-iclb: [FAIL][33] ([fdo#111550]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb5/igt@gem_eio@suspend.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb6/igt@gem_eio@suspend.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][35] ([fdo#110854]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb6/igt@gem_exec_balancer@smoke.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb2/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@pi-ringfull-bsd: - shard-apl: [FAIL][37] ([fdo#111547]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl4/igt@gem_exec_schedule@pi-ringfull-bsd.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl6/igt@gem_exec_schedule@pi-ringfull-bsd.html * igt@gem_exec_schedule@preempt-bsd1: - shard-iclb: [SKIP][39] ([fdo#109276]) -> [PASS][40] +18 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb6/igt@gem_exec_schedule@preempt-bsd1.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb2/igt@gem_exec_schedule@preempt-bsd1.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [SKIP][41] ([fdo#111325]) -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb7/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@gem_mocs_settings@mocs-rc6-vebox: - shard-apl: [SKIP][43] ([fdo#109271]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl4/igt@gem_mocs_settings@mocs-rc6-vebox.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl2/igt@gem_mocs_settings@mocs-rc6-vebox.html * igt@gem_workarounds@suspend-resume: - shard-apl: [DMESG-WARN][45] ([fdo#108566]) -> [PASS][46] +4 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl3/igt@gem_workarounds@suspend-resume.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl7/igt@gem_workarounds@suspend-resume.html * igt@i915_pm_rpm@system-suspend: - shard-iclb: [FAIL][47] ([fdo#103375]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb5/igt@i915_pm_rpm@system-suspend.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb6/igt@i915_pm_rpm@system-suspend.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-glk: [FAIL][49] ([fdo#105363]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-snb: [INCOMPLETE][51] ([fdo#105411]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-snb7/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-iclb: [FAIL][53] ([fdo#103167]) -> [PASS][54] +6 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-hsw: [SKIP][55] ([fdo#109271]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-hsw7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-hsw7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [SKIP][57] ([fdo#109441]) -> [PASS][58] +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_sequence@queue-idle: - shard-apl: [FAIL][59] -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl4/igt@kms_sequence@queue-idle.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl8/igt@kms_sequence@queue-idle.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-apl: [FAIL][61] ([fdo#103375]) -> [PASS][62] +4 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl4/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@perf_pmu@init-busy-vcs0: - shard-apl: [FAIL][63] ([fdo#111545]) -> [PASS][64] +11 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl4/igt@perf_pmu@init-busy-vcs0.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl8/igt@perf_pmu@init-busy-vcs0.html #### Warnings #### * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [SKIP][65] ([fdo#109349]) -> [DMESG-WARN][66] ([fdo#107724]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-iclb5/igt@kms_dp_dsc@basic-dsc-enable-edp.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html * igt@perf_pmu@cpu-hotplug: - shard-apl: [TIMEOUT][67] ([fdo#111546]) -> [INCOMPLETE][68] ([fdo#103927]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-apl4/igt@perf_pmu@cpu-hotplug.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-apl6/igt@perf_pmu@cpu-hotplug.html - shard-hsw: [INCOMPLETE][69] ([fdo#103540]) -> [TIMEOUT][70] ([fdo#111546]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5170/shard-hsw6/igt@perf_pmu@cpu-hotplug.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/shard-hsw8/igt@perf_pmu@cpu-hotplug.html [fdo#103060]: https://bugs.freedesktop.org/show_bug.cgi?id=103060 [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#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [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#107918]: https://bugs.freedesktop.org/show_bug.cgi?id=107918 [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#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111545]: https://bugs.freedesktop.org/show_bug.cgi?id=111545 [fdo#111546]: https://bugs.freedesktop.org/show_bug.cgi?id=111546 [fdo#111547]: https://bugs.freedesktop.org/show_bug.cgi?id=111547 [fdo#111548]: https://bugs.freedesktop.org/show_bug.cgi?id=111548 [fdo#111550]: https://bugs.freedesktop.org/show_bug.cgi?id=111550 Participating hosts (7 -> 6) ------------------------------ Missing (1): shard-skl Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5170 -> IGTPW_3418 CI-20190529: 20190529 CI_DRM_6834: 5b80d3f233a9c08d6fdff9cc51e25895a28e02f6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3418: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/ IGT_5170: 2520686d9f2299a3f2062a88da34747a42e0848d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3418/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-09-04 17:36 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-09-04 13:39 [igt-dev] [PATCH i-g-t] .gitlab-ci: List test binaries with missing top-level description correctly Arkadiusz Hiler 2019-09-04 14:21 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-09-04 17:36 ` [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