Skip to content

Commit 30700cd

Browse files
committed
patch 8.1.0576: indent script tests pick up installed scripts
Problem: Indent script tests pick up installed scripts. Solution: Use current runtime indent scripts.
1 parent d47d522 commit 30700cd

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

runtime/indent/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Portable Makefile for running indent tests.
22

33
VIM = vim
4+
VIMRUNTIME = ..
45

56
# Run the tests that didn't run yet or failed previously.
67
# If a test succeeds a testdir/*.out file will be written.
78
# If a test fails a testdir/*.fail file will be written.
89
test:
9-
$(VIM) --clean --not-a-term -u testdir/runtest.vim
10+
VIMRUNTIME=$(VIMRUNTIME) $(VIM) --clean --not-a-term -u testdir/runtest.vim
1011

1112

1213
clean:
13-
$(VIM) --clean --not-a-term -u testdir/cleantest.vim
14+
VIMRUNTIME=$(VIMRUNTIME) $(VIM) --clean --not-a-term -u testdir/cleantest.vim

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -792,6 +792,8 @@ static char *(features[]) =
792792

793793
static int included_patches[] =
794794
{ /* Add new patch number below this line */
795+
/**/
796+
576,
795797
/**/
796798
575,
797799
/**/

0 commit comments

Comments
 (0)