From: Tomas Krizek Date: Thu, 31 Jan 2019 16:01:36 +0000 (+0100) Subject: meson: tests/config - run additional tests from tree X-Git-Tag: v4.0.0~24^2~201 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=024b17bec7b4010ca19290e19640a8b3fde456b4;p=thirdparty%2Fknot-resolver.git meson: tests/config - run additional tests from tree --- diff --git a/daemon/lua/meson.build b/daemon/lua/meson.build index 37839d38f..1052571c4 100644 --- a/daemon/lua/meson.build +++ b/daemon/lua/meson.build @@ -5,6 +5,10 @@ lua_src_daemon = [ 'zonefile.lua', ] +config_tests += [ + # TODO bootstrap +] + # install lua modules foreach mod : lua_src_daemon install_data( diff --git a/daemon/meson.build b/daemon/meson.build index 2c1490c08..fbdfa79ed 100644 --- a/daemon/meson.build +++ b/daemon/meson.build @@ -14,6 +14,11 @@ kresd_src = [ ] +config_tests += [ + # TODO cache +] + + subdir('lua') diff --git a/modules/meson.build b/modules/meson.build index 7fa9ab695..cb7e28c4c 100644 --- a/modules/meson.build +++ b/modules/meson.build @@ -23,6 +23,16 @@ lua_src = [ 'workarounds/workarounds.lua', ] +config_tests += [ + ['predict', files('predict/predict.test.lua')], + ['http', files('http/http.test.lua')], + # TODO http/test_tls + ['policy', files('policy/policy.test.lua')], + # TODO hints + ['nsid', files('nsid/nsid.test.lua')], + ['dns64', files('dns64/dns64.test.lua')], +] + subdir('bogus_log') # cookies module is not currently used