annotate runtime/indent/Makefile @ 15069:3f82f25df8d2 v8.1.0545

patch 8.1.0545: when executing indent tests user preferences interfere commit https://github.com/vim/vim/commit/dc2f73a6980be13c97a83047d0de50824bc0f20f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 25 04:03:09 2018 +0100 patch 8.1.0545: when executing indent tests user preferences interfere Problem: When executing indent tests user preferences interfere. Solution: Add "--clean".
author Bram Moolenaar <Bram@vim.org>
date Sun, 25 Nov 2018 04:15:05 +0100
parents 19b757c6c6a7
children 22e7834d286c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14970
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 # Portable Makefile for running indent tests.
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 VIM = vim
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 # Run the tests that didn't run yet or failed previously.
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 # If a test succeeds a testdir/*.out file will be written.
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 # If a test fails a testdir/*.fail file will be written.
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 test:
15069
3f82f25df8d2 patch 8.1.0545: when executing indent tests user preferences interfere
Bram Moolenaar <Bram@vim.org>
parents: 14970
diff changeset
9 $(VIM) --clean --not-a-term -u testdir/runtest.vim
14970
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11
19b757c6c6a7 patch 8.1.0496: no tests for indent files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 clean:
15069
3f82f25df8d2 patch 8.1.0545: when executing indent tests user preferences interfere
Bram Moolenaar <Bram@vim.org>
parents: 14970
diff changeset
13 $(VIM) --clean --not-a-term -u testdir/cleantest.vim