mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
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:
parent
0049eca6f4
commit
157a9c431c
@ -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/
|
||||
|
@ -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"
|
||||
|
11
package/bats-core/Config.in
Normal file
11
package/bats-core/Config.in
Normal 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
|
5
package/bats-core/bats-core.hash
Normal file
5
package/bats-core/bats-core.hash
Normal file
@ -0,0 +1,5 @@
|
||||
# Locally calculated
|
||||
sha256 855d8b8bed466bc505e61123d12885500ef6fcdb317ace1b668087364717ea82 bats-core-v1.1.0.tar.gz
|
||||
|
||||
# License files
|
||||
sha256 55074b2b3b87809105034e1468e59076554d76a80c67bcc592000cc3d929852d LICENSE.md
|
16
package/bats-core/bats-core.mk
Normal file
16
package/bats-core/bats-core.mk
Normal 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))
|
Loading…
Reference in New Issue
Block a user