[PATCH 3/4] test/Makefile: Run tests with prove when available
29 Feb
2020
29 Feb
'20
12:02 a.m.
--- test/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/Makefile b/test/Makefile index d310c8f5..758befa3 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,6 +1,13 @@ T = $(sort $(wildcard *.t)) +PROVE := $(shell command -v prove 2> /dev/null) + +ifdef PROVE +check: + prove . +else check: $(T) +endif clean: $(RM) -r test-results/ -- 2.25.1
29 Feb
29 Feb
1:59 p.m.
On Sat, 29 Feb 2020 at 01:02:04, Frédéric Mangano-Tarumi wrote:
--- test/Makefile | 7 +++++++ 1 file changed, 7 insertions(+)
Merged, thanks!
1758
Age (days ago)
1758
Last active (days ago)
1 comments
2 participants
participants (2)
-
Frédéric Mangano-Tarumi
-
Lukas Fleischer