Bram Moolenaar | c0fe497 | 2018-10-25 16:53:19 +0200 | [diff] [blame] | 1 | # Portable Makefile for running indent tests. |
| 2 | |
| 3 | VIM = vim |
| 4 | |
| 5 | # Run the tests that didn't run yet or failed previously. |
| 6 | # If a test succeeds a testdir/*.out file will be written. |
| 7 | # If a test fails a testdir/*.fail file will be written. |
| 8 | test: |
Bram Moolenaar | dc2f73a | 2018-11-25 04:03:09 +0100 | [diff] [blame] | 9 | $(VIM) --clean --not-a-term -u testdir/runtest.vim |
Bram Moolenaar | c0fe497 | 2018-10-25 16:53:19 +0200 | [diff] [blame] | 10 | |
| 11 | |
| 12 | clean: |
Bram Moolenaar | dc2f73a | 2018-11-25 04:03:09 +0100 | [diff] [blame] | 13 | $(VIM) --clean --not-a-term -u testdir/cleantest.vim |