File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -1717,7 +1717,7 @@ fn windows_unix_socket_exists() {
1717
1717
let tmp = tmpdir ( ) ;
1718
1718
let socket_path = tmp. join ( "socket" ) ;
1719
1719
1720
- // std doesn't current support Unix sockets on Windows so manually create one here.
1720
+ // std doesn't currently support Unix sockets on Windows so manually create one here.
1721
1721
net:: init ( ) ;
1722
1722
unsafe {
1723
1723
let socket = c:: WSASocketW (
@@ -1728,7 +1728,16 @@ fn windows_unix_socket_exists() {
1728
1728
0 ,
1729
1729
c:: WSA_FLAG_OVERLAPPED | c:: WSA_FLAG_NO_HANDLE_INHERIT ,
1730
1730
) ;
1731
- assert_ne ! ( socket, c:: INVALID_SOCKET ) ;
1731
+ // AF_UNIX is not supported on earlier versions of Windows,
1732
+ // so skip this test if it's unsupported and we're not in CI.
1733
+ if socket == c:: INVALID_SOCKET {
1734
+ let error = c:: WSAGetLastError ( ) ;
1735
+ if env:: var_os ( "CI" ) . is_none ( ) && error == c:: WSAEAFNOSUPPORT {
1736
+ return ;
1737
+ } else {
1738
+ panic ! ( "Creating AF_UNIX socket failed (OS error {error})" ) ;
1739
+ }
1740
+ }
1732
1741
let mut addr = c:: SOCKADDR_UN { sun_family : c:: AF_UNIX , sun_path : mem:: zeroed ( ) } ;
1733
1742
let bytes = socket_path. as_os_str ( ) . as_encoded_bytes ( ) ;
1734
1743
addr. sun_path [ ..bytes. len ( ) ] . copy_from_slice ( bytes) ;
You can’t perform that action at this time.
0 commit comments