[libvirt PATCH] meson: Include value of expensive_tests in summary

Andrea Bolognani posted 1 patch 3 years, 7 months ago
Test syntax-check failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20200922131820.155704-1-abologna@redhat.com
meson.build | 1 +
1 file changed, 1 insertion(+)
[libvirt PATCH] meson: Include value of expensive_tests in summary
Posted by Andrea Bolognani 3 years, 7 months ago
It's useful information to have available at a glance.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
---
 meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meson.build b/meson.build
index 24535a403c..4d42468a51 100644
--- a/meson.build
+++ b/meson.build
@@ -2444,6 +2444,7 @@ win_summary = {
 summary(win_summary, section: 'Windows', bool_yn: true)
 
 test_summary = {
+  'Expensive': use_expensive_tests,
   'Coverage': coverage_flags.length() > 0,
 }
 summary(test_summary, section: 'Test suite', bool_yn: true)
-- 
2.26.2

Re: [libvirt PATCH] meson: Include value of expensive_tests in summary
Posted by Pavel Hrdina 3 years, 7 months ago
On Tue, Sep 22, 2020 at 03:18:20PM +0200, Andrea Bolognani wrote:
> It's useful information to have available at a glance.
> 
> Signed-off-by: Andrea Bolognani <abologna@redhat.com>
> ---
>  meson.build | 1 +
>  1 file changed, 1 insertion(+)

Reviewed-by: Pavel Hrdina <phrdina@redhat.com>