Add a convenience makefile for the manual tests

This commit is contained in:
Martin T. H. Sandsmark
2021-07-20 14:54:12 +02:00
committed by Kurt Hindenburg
parent 8bf30d3df1
commit 0243c0d394
6 changed files with 22 additions and 0 deletions

9
.gitignore vendored
View File

@@ -32,3 +32,12 @@ doxydoc/
.cache
.idea
/cmake-build*
!/tests/Makefile
!/tests/*/Makefile
/tests/bugs/spam-stderr
/tests/features/signaltests
/tests/legacy/audit
/tests/legacy/quote
/tests/misc/ripple

9
tests/Makefile Normal file
View File

@@ -0,0 +1,9 @@
SUBDIRS := bugs features legacy misc
all: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
.PHONY: all $(SUBDIRS)

1
tests/bugs/Makefile Normal file
View File

@@ -0,0 +1 @@
all: spam-stderr

1
tests/features/Makefile Normal file
View File

@@ -0,0 +1 @@
all: signaltests

1
tests/legacy/Makefile Normal file
View File

@@ -0,0 +1 @@
all: audit quote

1
tests/misc/Makefile Normal file
View File

@@ -0,0 +1 @@
all: ripple