Skip to content

Commit 3214812

Browse files
committed
patch 8.2.2609: test disabled on MS-Windows even though it should work
Problem: Test disabled on MS-Windows even though it should work. Solution: Restore the condition for skipping the test. (Ken Takata, closes #7970)
1 parent f4fcedc commit 3214812

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/testdir/test_startup.vim

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ func Test_pack_in_rtp_when_plugins_run()
109109
endfunc
110110

111111
func Test_help_arg()
112-
CheckNotMSWindows
112+
if !has('unix') && has('gui_running')
113+
throw 'Skipped: does not work with gvim on MS-Windows'
114+
endif
113115

114116
if RunVim([], [], '--help >Xtestout')
115117
let lines = readfile('Xtestout')

src/version.c

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

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2609,
753755
/**/
754756
2608,
755757
/**/

0 commit comments

Comments
 (0)