mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 13:30:26 +02:00
Cygwin/MSYS: 00-socket.test: abstract sockets are unsupported
Binding to AF_UNIX abstract sockets is not supported on Cygwin and presumably MSYS as well. * test-suite/tests/00-socket.text ("AF_UNIX abstract"): throw unsupported on Cygwin and MSYS
This commit is contained in:
parent
73a8ca88fb
commit
c9a19a03f8
1 changed files with 7 additions and 0 deletions
|
@ -29,6 +29,12 @@
|
|||
(when (string-ci=? "darwin" (utsname:sysname (uname)))
|
||||
(throw 'untested)))
|
||||
|
||||
(define (skip-on-cygwin-msys)
|
||||
(when (or (string-contains %host-type "cygwin")
|
||||
(string-contains %host-type "msys"))
|
||||
;; See https://cygwin.com/pipermail/cygwin/2023-June/253785.html
|
||||
(throw 'unsupported)))
|
||||
|
||||
|
||||
|
||||
;;;
|
||||
|
@ -341,6 +347,7 @@
|
|||
|
||||
(pass-if "bind abstract"
|
||||
(skip-on-darwin)
|
||||
(skip-on-cygwin-msys)
|
||||
(catch 'system-error
|
||||
(lambda ()
|
||||
(bind server-socket AF_UNIX path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue