diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-03-16 13:23:30 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-03-16 13:23:30 +0100 |
commit | 321481299757cdd43baeed33f4c5ba543fdfc7f7 (patch) | |
tree | 2a3e44be77b6d9eb2589d9b7dc18e3000dd87f5b /src | |
parent | f4fcedc59d4cc5ae6b5270a933e8377030283c1c (diff) | |
download | vim-git-321481299757cdd43baeed33f4c5ba543fdfc7f7.tar.gz |
patch 8.2.2609: test disabled on MS-Windows even though it should workv8.2.2609
Problem: Test disabled on MS-Windows even though it should work.
Solution: Restore the condition for skipping the test. (Ken Takata,
closes #7970)
Diffstat (limited to 'src')
-rw-r--r-- | src/testdir/test_startup.vim | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim index e8be19120..169c21350 100644 --- 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') diff --git a/src/version.c b/src/version.c index 9d46da68c..ef2f0cb31 100644 --- 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, |