qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] meson: use thorough test setup as default
@ 2025-05-03 20:18 Pierrick Bouvier
  2025-05-05  6:00 ` Paolo Bonzini
                   ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Pierrick Bouvier @ 2025-05-03 20:18 UTC (permalink / raw)
  To: qemu-devel
  Cc: Marc-André Lureau, Paolo Bonzini, thuth,
	Daniel P. Berrangé, Philippe Mathieu-Daudé,
	Pierrick Bouvier

Allows all tests to be visible by default when using meson test
directly.

This has no impact on make check-* commands, which use SPEED=quick by
default (see scripts/mtest2make.py).

Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
---
 meson.build | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/meson.build b/meson.build
index f8bf6e7bb66..57ff3f722d8 100644
--- a/meson.build
+++ b/meson.build
@@ -5,12 +5,13 @@ project('qemu', ['c'], meson_version: '>=1.5.0',
 
 meson.add_devenv({ 'MESON_BUILD_ROOT' : meson.project_build_root() })
 
-add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true,
+add_test_setup('quick', exclude_suites: ['slow', 'thorough'],
                env: ['RUST_BACKTRACE=1'])
 add_test_setup('slow', exclude_suites: ['thorough'],
                env: ['G_TEST_SLOW=1', 'SPEED=slow', 'RUST_BACKTRACE=1'])
 add_test_setup('thorough',
-               env: ['G_TEST_SLOW=1', 'SPEED=thorough', 'RUST_BACKTRACE=1'])
+               env: ['G_TEST_SLOW=1', 'SPEED=thorough', 'RUST_BACKTRACE=1'],
+               is_default: true)
 
 meson.add_postconf_script(find_program('scripts/symlink-install-tree.py'))
 
-- 
2.47.2



^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2025-05-08 20:21 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-03 20:18 [PATCH] meson: use thorough test setup as default Pierrick Bouvier
2025-05-05  6:00 ` Paolo Bonzini
2025-05-05 17:32   ` Pierrick Bouvier
2025-05-05 10:32 ` Thomas Huth
2025-05-05 17:46   ` Pierrick Bouvier
2025-05-06  9:33     ` Daniel P. Berrangé
2025-05-06 15:31       ` Pierrick Bouvier
2025-05-06 15:36         ` Daniel P. Berrangé
2025-05-06 17:12         ` Thomas Huth
2025-05-07  7:14           ` Daniel P. Berrangé
2025-05-07  7:39             ` Thomas Huth
2025-05-07 18:45               ` Pierrick Bouvier
2025-05-08 10:05                 ` Thomas Huth
2025-05-08 20:20                   ` Pierrick Bouvier
2025-05-06  9:36 ` Daniel P. Berrangé
2025-05-06 10:16   ` Thomas Huth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).