blob: d1926055270cb886b7806bad016ad02e367de2ba [file] [log] [blame]
Bram Moolenaarc0fe4972018-10-25 16:53:19 +02001# Portable Makefile for running indent tests.
2
3VIM = vim
Bram Moolenaar30700cd2018-12-10 21:36:56 +01004VIMRUNTIME = ..
Bram Moolenaarc0fe4972018-10-25 16:53:19 +02005
6# Run the tests that didn't run yet or failed previously.
7# If a test succeeds a testdir/*.out file will be written.
8# If a test fails a testdir/*.fail file will be written.
9test:
Bram Moolenaar30700cd2018-12-10 21:36:56 +010010 VIMRUNTIME=$(VIMRUNTIME) $(VIM) --clean --not-a-term -u testdir/runtest.vim
Bram Moolenaarc0fe4972018-10-25 16:53:19 +020011
12
13clean:
Bram Moolenaare13a3902019-04-27 17:57:31 +020014 rm -f testdir/*.fail testdir/*.out