blob: a50494d8c55386c5a67867d7dda85b077cc9f8ad [file] [log] [blame]
RestorerZ8291e912024-03-16 15:08:53 +01001# Makefile for running indent tests on OS Windows.
2# Made on the base of a indent/Makefile.
3# Restorer, 13.03.2024
4
5.SUFFIXES:
6
RestorerZcd33faf2024-07-04 17:47:16 +02007VIMPROG = vim.exe
RestorerZ8291e912024-03-16 15:08:53 +01008VIMRUNTIME = ..
9
10# Run the tests that didn't run yet or failed previously.
11# If a test succeeds a testdir\*.out file will be written.
12# If a test fails a testdir\*.fail file will be written.
13test :
14 @ set "VIMRUNTIME=$(VIMRUNTIME)"
RestorerZcd33faf2024-07-04 17:47:16 +020015 $(VIMPROG) --clean --not-a-term -u testdir\runtest.vim
RestorerZ8291e912024-03-16 15:08:53 +010016
17
18clean testclean :
19 @ if exist testdir\*.fail del /q testdir\*.fail
20 @ if exist testdir\*.out del /q testdir\*.out
21