From: Tomas Krizek Date: Fri, 1 Feb 2019 12:26:22 +0000 (+0100) Subject: meson: tests/config: run all configtests X-Git-Tag: v4.0.0~24^2~197 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ffc95f809b3da69dc1e7171bf8d448ecce815146;p=thirdparty%2Fknot-resolver.git meson: tests/config: run all configtests --- diff --git a/daemon/lua/meson.build b/daemon/lua/meson.build index 1052571c4..8c774d0de 100644 --- a/daemon/lua/meson.build +++ b/daemon/lua/meson.build @@ -6,7 +6,7 @@ lua_src_daemon = [ ] config_tests += [ - # TODO bootstrap + ['ta_bootstrap', files('trust_anchors.test/bootstrap.test.lua')], ] # install lua modules diff --git a/daemon/meson.build b/daemon/meson.build index a3905b2df..ac1b5f05a 100644 --- a/daemon/meson.build +++ b/daemon/meson.build @@ -15,7 +15,7 @@ kresd_src = [ config_tests += [ - # TODO cache + ['cache.clear', files('cache.test/clear.test.lua')], ] diff --git a/modules/http/meson.build b/modules/http/meson.build index a656a7b95..699bf5a19 100644 --- a/modules/http/meson.build +++ b/modules/http/meson.build @@ -1,3 +1,7 @@ +config_tests += [ + ['http.tls', files('test_tls/tls.test.lua')], +] + # install static files install_subdir( 'static', diff --git a/modules/meson.build b/modules/meson.build index cb7e28c4c..6acdffa65 100644 --- a/modules/meson.build +++ b/modules/meson.build @@ -25,10 +25,10 @@ lua_src = [ config_tests += [ ['predict', files('predict/predict.test.lua')], - ['http', files('http/http.test.lua')], - # TODO http/test_tls + ['http', files('http/http.test.lua')], # TODO organize + ['http.tls', files('http/test_tls/tls.test.lua')], ['policy', files('policy/policy.test.lua')], - # TODO hints + ['hints', files('hints/tests/hints.test.lua')], ['nsid', files('nsid/nsid.test.lua')], ['dns64', files('dns64/dns64.test.lua')], ]