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)
3214812997
This commit is contained in:
Jan Edmund Lazo 2021-03-17 22:00:46 -04:00
parent 0ab88c2ea8
commit f1f131d132
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15

View File

@ -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')