From: Fred Morcos Date: Mon, 4 Mar 2024 13:52:13 +0000 (+0100) Subject: Meson: Change how the auth testrunner test object is created X-Git-Tag: rec-5.1.0-alpha1~80^2~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e7b708853867273a20ae1c5527ce1ba28ff5673;p=thirdparty%2Fpdns.git Meson: Change how the auth testrunner test object is created --- diff --git a/meson.build b/meson.build index 5389d151b6..15b36ff329 100644 --- a/meson.build +++ b/meson.build @@ -770,7 +770,15 @@ foreach tool, info: tools endforeach if get_option('unit-tests') - test('PDNS Auth Testrunner', pdns_auth_testrunner, verbose: true) + test( + 'pdns-auth-testrunner', + pdns_auth_testrunner, + verbose: get_option('unit-tests-verbose'), + env: { + 'BOOST_TEST_LOG_LEVEL': 'message', + }, + is_parallel: false, + ) endif if get_option('unit-tests-backends') @@ -816,7 +824,7 @@ if get_option('unit-tests-backends') test( 'pdns-auth-' + test_binary, module_remotebackend_testrunner, - args: get_variable(exec_var_name).full_path(), + args: ['--', get_variable(exec_var_name).full_path()], verbose: verbose, env: env, workdir: product_source_dir / fs.parent(module_remotebackend_testrunner),