vim/runtime/indent/Makefile
Christian Brabandt 203c7225f5
CI: huge linux builds should also run syntax & indent tests
closes: #15960

Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-10-29 20:27:34 +01:00

18 lines
463 B
Makefile

# Portable Makefile for running indent tests.
.SUFFIXES:
.PHONY: test clean testclean
VIMPROG = vim
VIMRUNTIME = ..
# Run the tests that didn't run yet or failed previously.
# If a test succeeds a testdir/*.out file will be written.
# If a test fails a testdir/*.fail file will be written.
test:
VIMRUNTIME=$(VIMRUNTIME) $(VIMPROG) --clean --not-a-term -u testdir/runtest.vim
@echo "INDENT TESTS: DONE"
clean testclean:
rm -f testdir/*.fail testdir/*.out