2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 14:05:33 +00:00

[#3732] Make perfdhcp tests sequential in meson

This commit is contained in:
Andrei Pavel
2025-04-13 21:16:41 +03:00
parent 287c9071a1
commit 56fb8d364e

View File

@@ -23,4 +23,10 @@ perfdhcp_tests = executable(
include_directories: [include_directories('.'), include_directories('..')] + INCLUDES,
link_with: [perfdhcp_lib, kea_util_unittests_lib] + LIBS_BUILT_SO_FAR,
)
test('perfdhcp-tests', perfdhcp_tests, protocol: 'gtest')
test(
'perfdhcp-tests',
perfdhcp_tests,
protocol: 'gtest',
is_parallel: false,
priority: -1,
)