comparison src/testdir/check.vim @ 28317:d32dc906dd2c v8.2.4684

patch 8.2.4684: cannot open a channel on a Unix domain socket Commit: https://github.com/vim/vim/commit/cc766a85f460ebb7f8c915508447548b5f5b99bc Author: LemonBoy <thatlemon@gmail.com> Date: Mon Apr 4 15:46:58 2022 +0100 patch 8.2.4684: cannot open a channel on a Unix domain socket Problem: Cannot open a channel on a Unix domain socket. Solution: Add Unix domain socket support. (closes https://github.com/vim/vim/issues/10062)
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Apr 2022 17:00:04 +0200
parents 34b75c77a7bd
children 5dd393285464
comparison
equal deleted inserted replaced
28316:6ce57599817a 28317:d32dc906dd2c
93 if !has('unix') 93 if !has('unix')
94 throw 'Skipped: only works on Unix' 94 throw 'Skipped: only works on Unix'
95 endif 95 endif
96 endfunc 96 endfunc
97 97
98 " Command to check for running on Linix 98 " Command to check for running on Linux
99 command CheckLinux call CheckLinux() 99 command CheckLinux call CheckLinux()
100 func CheckLinux() 100 func CheckLinux()
101 if !has('linux') 101 if !has('linux')
102 throw 'Skipped: only works on Linux' 102 throw 'Skipped: only works on Linux'
103 endif 103 endif