]> git.meshlink.io Git - meshlink/blobdiff - configure.ac
Add support for opening a MeshLink instance without permanent storage.
[meshlink] / configure.ac
index 363676eec55e21d22a19f2c0c332d8ca0aacb31a..275bf5f138cbbf54f6f2e1fd9763cf177e80b8d4 100644 (file)
@@ -91,6 +91,11 @@ AS_IF([test "x$enable_utcp_debug" = "xyes"],
   ]
 );
 
+dnl Blackbox test suite
+PKG_CHECK_MODULES([CMOCKA], [cmocka >= 1.1.0], [cmocka=true], [cmocka=false])
+PKG_CHECK_MODULES([LXC], [lxc >= 2.0.0], [lxc=true], [lxc=false])
+AM_CONDITIONAL(BLACKBOX_TESTS, test "$cmocka" = true -a "$lxc" = true)
+
 dnl Install test binaries
 AC_ARG_ENABLE([install_tests],
   [AS_HELP_STRING([--enable-install-tests], [include test binaries in installation])],
@@ -145,6 +150,14 @@ AC_CONFIG_FILES([
         test/Makefile
         test/blackbox/Makefile
         test/blackbox/run_blackbox_tests/Makefile
+        test/blackbox/test_case_channel_conn_01/Makefile
+        test/blackbox/test_case_channel_conn_02/Makefile
+        test/blackbox/test_case_channel_conn_03/Makefile
+        test/blackbox/test_case_channel_conn_04/Makefile
+        test/blackbox/test_case_channel_conn_05/Makefile
+        test/blackbox/test_case_channel_conn_06/Makefile
+        test/blackbox/test_case_channel_conn_07/Makefile
+        test/blackbox/test_case_channel_conn_08/Makefile
         test/blackbox/test_case_meta_conn_01/Makefile
         test/blackbox/test_case_meta_conn_02/Makefile
         test/blackbox/test_case_meta_conn_03/Makefile