2019-09-18 13:36:38 -07:00
|
|
|
# Portable Makefile for running indent tests.
|
|
|
|
|
|
|
|
VIM = vim
|
2019-09-18 13:38:07 -07:00
|
|
|
VIMRUNTIME = ..
|
2019-09-18 13:36:38 -07:00
|
|
|
|
|
|
|
# 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:
|
2019-09-18 13:38:07 -07:00
|
|
|
VIMRUNTIME=$(VIMRUNTIME) $(VIM) --clean --not-a-term -u testdir/runtest.vim
|
2019-09-18 13:36:38 -07:00
|
|
|
|
|
|
|
|
2021-04-28 19:51:23 -07:00
|
|
|
clean testclean:
|
2019-09-18 13:40:06 -07:00
|
|
|
rm -f testdir/*.fail testdir/*.out
|