]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3732] Make perfdhcp tests sequential in meson
authorAndrei Pavel <andrei@isc.org>
Sun, 13 Apr 2025 18:16:41 +0000 (21:16 +0300)
committerAndrei Pavel <andrei@isc.org>
Sun, 13 Apr 2025 18:16:41 +0000 (21:16 +0300)
src/bin/perfdhcp/tests/meson.build

index b5727d69e6e63eea27dab1c6ae674a022bdeefb2..ba08ef865c48d07f39555d62eca95a680aedef19 100644 (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,
+)