feat: Add make target to generate test 'before' condition'

This commit is contained in:
Caleb Maclennan 2020-09-30 21:41:56 +03:00
parent 6118163064
commit 6ef3a8ccc3
No known key found for this signature in database
GPG Key ID: 63CC496475267693
1 changed files with 6 additions and 3 deletions

View File

@ -30,17 +30,20 @@ test: test-basic test-example test-md test-tables
RUN=&& ldoc . && diff -r docs cdocs && echo ok
test-prep:
find -type d -name doc -execdir rsync -av --del {}/ cdocs/ \;
test-basic:
cd tests $(RUN)
test-example:
cd tests && cd example $(RUN)
cd tests/example $(RUN)
test-md:
cd tests && cd md-test $(RUN)
cd tests/md-test $(RUN)
test-tables:
cd tests && cd simple $(RUN)
cd tests/simple $(RUN)
test-clean: clean-basic clean-example clean-md clean-tables