From 688aedf2ebfa016f5f9208595c062ab48fafdfb4 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Wed, 29 Nov 2023 17:23:25 +0100 Subject: [PATCH] rpcgen: Organize meson tests into suites These are currently the only tests that are not part of any suite. Signed-off-by: Andrea Bolognani Reviewed-by: Michal Privoznik --- scripts/rpcgen/meson.build | 1 + scripts/rpcgen/tests/meson.build | 1 + 2 files changed, 2 insertions(+) diff --git a/scripts/rpcgen/meson.build b/scripts/rpcgen/meson.build index 20e4c06dbc..d8d0e03784 100644 --- a/scripts/rpcgen/meson.build +++ b/scripts/rpcgen/meson.build @@ -8,6 +8,7 @@ if pytest_prog.found() args: [ '-mpytest' ] + rpcgen_tests, env: runutf8, workdir: meson.current_source_dir(), + suite: 'script', ) endif diff --git a/scripts/rpcgen/tests/meson.build b/scripts/rpcgen/tests/meson.build index dfd757de7c..10f504dab2 100644 --- a/scripts/rpcgen/tests/meson.build +++ b/scripts/rpcgen/tests/meson.build @@ -20,4 +20,5 @@ test( 'test_demo', test_demo, workdir: meson.current_source_dir(), + suite: 'bin', )