package/bats-core: new package

A bash-based automated testing system.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Peter Korsgaard 2019-04-02 15:21:42 +02:00 committed by Thomas Petazzoni
parent 0049eca6f4
commit 157a9c431c
5 changed files with 34 additions and 0 deletions

View File

@ -1715,6 +1715,7 @@ F: configs/orangepi_pc_defconfig
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/

View File

@ -138,6 +138,7 @@ menu "Debugging, profiling and benchmark"
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"

View File

@ -0,0 +1,11 @@
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

View File

@ -0,0 +1,5 @@
# Locally calculated
sha256 855d8b8bed466bc505e61123d12885500ef6fcdb317ace1b668087364717ea82 bats-core-v1.1.0.tar.gz
# License files
sha256 55074b2b3b87809105034e1468e59076554d76a80c67bcc592000cc3d929852d LICENSE.md

View File

@ -0,0 +1,16 @@
################################################################################
#
# 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))