blob: 1917e46c6b06b03174d07ac4f642239462bc7242 [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 Moolenaar30700cd2018-12-10 21:36:56 +010014 VIMRUNTIME=$(VIMRUNTIME) $(VIM) --clean --not-a-term -u testdir/cleantest.vim