From f1f131d132e983bead9173c5cb75a66447c82902 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Wed, 17 Mar 2021 22:00:46 -0400 Subject: vim-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 vim/vim#7970) https://github.com/vim/vim/commit/321481299757cdd43baeed33f4c5ba543fdfc7f7 --- src/nvim/testdir/test_startup.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/nvim/testdir/test_startup.vim b/src/nvim/testdir/test_startup.vim index eebf85af6f..c49d9fc639 100644 --- a/src/nvim/testdir/test_startup.vim +++ b/src/nvim/testdir/test_startup.vim @@ -111,7 +111,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') -- cgit