Skip to content

Commit 3321e9d

Browse files
committed
patch 7.4.2173
Problem: Can't test help on MS-Windows. Solution: Skip the test.
1 parent 472a0a8 commit 3321e9d

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/testdir/test_startup.vim

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ func Test_after_comes_later()
6262
endfunc
6363

6464
func Test_help_arg()
65+
if !has('unix') && has('gui')
66+
" this doesn't work with gvim on MS-Windows
67+
return
68+
endif
6569
if RunVim([], [], '--help >Xtestout')
6670
let lines = readfile('Xtestout')
6771
call assert_true(len(lines) > 20)

src/version.c

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

764764
static int included_patches[] =
765765
{ /* Add new patch number below this line */
766+
/**/
767+
2173,
766768
/**/
767769
2172,
768770
/**/

0 commit comments

Comments
 (0)