changeset 24136:9433e10ce242 v8.2.2609

patch 8.2.2609: test disabled on MS-Windows even though it should work Commit: https://github.com/vim/vim/commit/321481299757cdd43baeed33f4c5ba543fdfc7f7 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 16 13:23:30 2021 +0100 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)
author Bram Moolenaar <Bram@vim.org>
date Tue, 16 Mar 2021 13:30:04 +0100
parents 9b8ff833e1db
children 65b1bfb45f15
files src/testdir/test_startup.vim src/version.c
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_startup.vim
+++ b/src/testdir/test_startup.vim
@@ -109,7 +109,9 @@ func Test_pack_in_rtp_when_plugins_run()
 endfunc
 
 func Test_help_arg()
-  CheckNotMSWindows
+  if !has('unix') && has('gui_running')
+    throw 'Skipped: does not work with gvim on MS-Windows'
+  endif
 
   if RunVim([], [], '--help >Xtestout')
     let lines = readfile('Xtestout')
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2609,
+/**/
     2608,
 /**/
     2607,