aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-03-17 22:00:46 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-03-17 22:00:50 -0400
commitf1f131d132e983bead9173c5cb75a66447c82902 (patch)
treec53917fa5794e775a4b532504b701253fc5c26fa /src
parent0ab88c2ea80caa7cda97b3a8479d0d32e4636ab6 (diff)
downloadrneovim-f1f131d132e983bead9173c5cb75a66447c82902.tar.gz
rneovim-f1f131d132e983bead9173c5cb75a66447c82902.tar.bz2
rneovim-f1f131d132e983bead9173c5cb75a66447c82902.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/test_startup.vim4
1 files changed, 3 insertions, 1 deletions
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')