Skip to content

Commit 4ac97f4

Browse files
committed
patch 8.2.1448: test 77a for VMS depends on small.vim which does not exist
Problem: Test 77a for VMS depends on small.vim which does not exist. Solution: Use the 'silent while 0" trick. (issue #6696)
1 parent 32f335f commit 4ac97f4

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

src/testdir/test77a.in

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ If it isn't available then the test will be skipped.
1010

1111
VMS does not have CKSUM but has a built in CHECKSUM - it should be used
1212
STARTTEST
13-
:so small.vim
13+
:silent! while 0
14+
: e! test.ok
15+
: w! test.out
16+
: qa!
17+
:silent! endwhile
1418
:if !has("vms")
1519
: e! test.ok
1620
: w! test.out

src/version.c

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

755755
static int included_patches[] =
756756
{ /* Add new patch number below this line */
757+
/**/
758+
1448,
757759
/**/
758760
1447,
759761
/**/

0 commit comments

Comments
 (0)