X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=test%2Funit%2Fmeson.build;h=5200598724d34c94265ebcf89e6a1484da74b1cb;hb=ce4d55b72fd4290d4710f10e755f6dd9ed039d88;hp=70a02d2e5a67c69b53c3af938da0367c516e2240;hpb=0289162552cd85375605044c696e2a3294e7aa9a;p=tinc diff --git a/test/unit/meson.build b/test/unit/meson.build index 70a02d2e..52005987 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', }, @@ -28,6 +31,9 @@ tests = { 'code': 'test_random_noinit.c', 'fail': true, }, + 'graph': { + 'code': 'test_graph.c', + }, 'netutl': { 'code': 'test_netutl.c', }, @@ -41,9 +47,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,