X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=test%2Funit%2Fmeson.build;h=b91f6bae53f9e828a40332f7fe673219801403f2;hb=9235256116574927657a93944ef1b21e255e771b;hp=d83a080a761e7ada30034b333dc8c4ee1f8e5524;hpb=0fe69908838248c28624beb540257892db6bdcbd;p=tinc diff --git a/test/unit/meson.build b/test/unit/meson.build index d83a080a..b91f6bae 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,12 @@ tests = { 'code': 'test_random_noinit.c', 'fail': true, }, + 'graph': { + 'code': 'test_graph.c', + }, + 'netutl': { + 'code': 'test_netutl.c', + }, 'net': { 'code': 'test_net.c', 'mock': ['execute_script', 'environment_init', 'environment_exit'], @@ -38,6 +47,22 @@ tests = { 'protocol': { 'code': 'test_protocol.c', }, + 'proxy': { + 'code': 'test_proxy.c', + }, + 'utils': { + 'code': 'test_utils.c', + }, + 'fs': { + 'code': 'test_fs.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,