1config BR2_PACKAGE_KYUA 2 bool "kyua" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_PACKAGE_HAS_LUAINTERPRETER # lutok 5 depends on !BR2_PACKAGE_LUAJIT # lutok 6 depends on !BR2_STATIC_LIBS # lutok 7 depends on BR2_USE_MMU # atf 8 select BR2_PACKAGE_ATF 9 select BR2_PACKAGE_LUTOK 10 select BR2_PACKAGE_SQLITE 11 help 12 Kyua is a testing framework for infrastructure software, 13 originally designed to equip BSD-based operating systems 14 with a test suite. This means that Kyua is lightweight 15 and simple, and that Kyua integrates well with various build 16 systems and continuous integration frameworks. 17 18 https://github.com/jmmv/kyua 19 20comment "kyua needs a toolchain w/ C++, dynamic library and full Lua" 21 depends on !BR2_INSTALL_LIBSTDCPP || BR2_PACKAGE_LUAJIT || BR2_STATIC_LIBS 22 depends on BR2_PACKAGE_HAS_LUAINTERPRETER 23 depends on BR2_USE_MMU 24