]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Build unit tests even if backend unit tests aren't enabled
authorFred Morcos <fred.morcos@open-xchange.com>
Wed, 22 Nov 2023 13:25:45 +0000 (14:25 +0100)
committerFred Morcos <fred.morcos@open-xchange.com>
Wed, 20 Mar 2024 12:28:56 +0000 (13:28 +0100)
meson.build
pdns/meson.build

index 7996b4516d60180a26b31c3b36b648f609ba2039..3a8d123f686e710ec7513faa80391915301527c2 100644 (file)
@@ -242,7 +242,7 @@ if get_option('tools-ixfrdist')
   tools += ['ixfrdist', 'ixplore']
 endif
 
-if get_option('unit-tests') or get_option('unit-tests-backends')
+if get_option('unit-tests')
   # TODO: NOINSTALL speedtest and pdns-auth-testrunner
   tools += ['tsig_tests', 'speedtest', 'pdns-auth-testrunner']
 endif
index 442e35a14b7adced554f9b481cb177c611f87ce0..490b35e7f78a1c6d3450a1c99fd476ca365117bb 100644 (file)
@@ -1353,7 +1353,7 @@ if get_option('tools-ixfrdist')
   }
 endif
 
-if get_option('unit-tests') or get_option('unit-tests-backends')
+if get_option('unit-tests')
   tool_libs += {
     'tsig_tests': {
       'main': 'tsig-tests.cc',