X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=test%2Funit%2Fmeson.build;h=8633c186cf07f2f473cc27aeb77e5c777ed991ed;hb=b39b69a2e4b20c8fb9c49af4156734437b42f910;hp=70a02d2e5a67c69b53c3af938da0367c516e2240;hpb=0289162552cd85375605044c696e2a3294e7aa9a;p=tinc diff --git a/test/unit/meson.build b/test/unit/meson.build index 70a02d2e..8633c186 100644 --- a/test/unit/meson.build +++ b/test/unit/meson.build @@ -21,6 +21,9 @@ link_tincd = { 'lib': lib_tincd, 'dep': deps_tincd } # } tests = { + 'dropin': { + 'code': 'test_dropin.c', + }, 'random': { 'code': 'test_random.c', }, @@ -41,9 +44,19 @@ tests = { 'protocol': { 'code': 'test_protocol.c', }, + 'proxy': { + 'code': 'test_proxy.c', + }, 'utils': { 'code': 'test_utils.c', }, + 'xalloc': { + 'code': 'test_xalloc.c', + }, + 'memzero_null': { + 'code': 'test_memzero_null.c', + 'fail': true, + }, 'splay_tree': { 'code': 'test_splay_tree.c', 'link': link_tinc,