A bash-based automated testing system.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
F: configs/pandaboard_defconfig
F: configs/roseapplepi_defconfig
F: configs/sheevaplug_defconfig
+F: package/bats-core/
F: package/docker-compose/
F: package/dump1090/
F: package/flickcurl/
endmenu
menu "Development tools"
+ source "package/bats-core/Config.in"
source "package/binutils/Config.in"
source "package/bsdiff/Config.in"
source "package/bustle/Config.in"
--- /dev/null
+config BR2_PACKAGE_BATS_CORE
+ bool "bats"
+ depends on BR2_PACKAGE_BASH # runtime
+ help
+ Bats: Bash Automated Testing System
+
+ Bats is a TAP-compliant testing framework for Bash. It
+ provides a simple way to verify that the UNIX programs you
+ write behave as expected.
+
+ https://github.com/bats-core/bats-core
--- /dev/null
+# Locally calculated
+sha256 855d8b8bed466bc505e61123d12885500ef6fcdb317ace1b668087364717ea82 bats-core-v1.1.0.tar.gz
+
+# License files
+sha256 55074b2b3b87809105034e1468e59076554d76a80c67bcc592000cc3d929852d LICENSE.md
--- /dev/null
+################################################################################
+#
+# bats-core
+#
+################################################################################
+
+BATS_CORE_VERSION = v1.1.0
+BATS_CORE_SITE = $(call github,bats-core,bats-core,$(BATS_CORE_VERSION))
+BATS_CORE_LICENSE = MIT
+BATS_CORE_LICENSE_FILES = LICENSE.md
+
+define BATS_CORE_INSTALL_TARGET_CMDS
+ $(@D)/install.sh $(TARGET_DIR)/usr
+endef
+
+$(eval $(generic-package))