test/*: rewrite check.sh in Makefile

This commit is contained in:
illiliti
2021-08-05 09:03:47 +03:00
parent 30a0f61955
commit 9f12880096
3 changed files with 19 additions and 54 deletions

16
test/Makefile Normal file
View File

@@ -0,0 +1,16 @@
.POSIX:
.SUFFIXES:
.SUFFIXES: .test
TEST = bare luks lvm zfs
all: ${TEST}
.test:
./$< > $@.out 2>&1
clean:
rm -f *.out
.PHONY: all clean