From 6e38309c194d860cccd26f901ee5687502331779 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 4 Aug 2016 20:36:31 +0200 Subject: git-interface: Add test suite and basic tests Add basic tests for the Git interface. The test suite is based on sharness. Signed-off-by: Lukas Fleischer --- git-interface/test/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 git-interface/test/Makefile (limited to 'git-interface/test/Makefile') diff --git a/git-interface/test/Makefile b/git-interface/test/Makefile new file mode 100644 index 00000000..d6f0f740 --- /dev/null +++ b/git-interface/test/Makefile @@ -0,0 +1,11 @@ +T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)) + +check: $(T) + +clean: + $(RM) -r test-results/ + +$(T): + @echo "*** $@ ***"; $(SHELL) $@ + +.PHONY: check clean $(T) -- cgit v1.2.3-24-g4f1b