File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -362,6 +362,7 @@ fn do_test_unix_msg_unconnected(addr: SocketAddrUnix) {
362
362
}
363
363
364
364
#[ cfg( not( any( target_os = "espidf" , target_os = "redox" , target_os = "wasi" ) ) ) ]
365
+ #[ cfg( not( target_os = "freebsd" ) ) ] // TODO: Investigate why these tests fail on FreeBSD.
365
366
#[ test]
366
367
fn test_unix_msg ( ) {
367
368
use rustix:: ffi:: CString ;
@@ -445,6 +446,7 @@ fn test_abstract_unix_msg_unconnected() {
445
446
446
447
#[ cfg( not( any( target_os = "redox" , target_os = "wasi" ) ) ) ]
447
448
#[ cfg( feature = "pipe" ) ]
449
+ #[ cfg( not( target_os = "freebsd" ) ) ] // TODO: Investigate why these tests fail on FreeBSD.
448
450
#[ test]
449
451
fn test_unix_msg_with_scm_rights ( ) {
450
452
crate :: init ( ) ;
@@ -741,6 +743,7 @@ fn test_unix_peercred_implicit() {
741
743
/// over multiple control messages.
742
744
#[ cfg( not( any( target_os = "redox" , target_os = "wasi" ) ) ) ]
743
745
#[ cfg( feature = "pipe" ) ]
746
+ #[ cfg( not( target_os = "freebsd" ) ) ] // TODO: Investigate why these tests fail on FreeBSD.
744
747
#[ test]
745
748
fn test_unix_msg_with_combo ( ) {
746
749
crate :: init ( ) ;
Original file line number Diff line number Diff line change @@ -359,6 +359,7 @@ fn do_test_unix_msg_unconnected(addr: SocketAddrUnix) {
359
359
}
360
360
361
361
#[ cfg( not( any( target_os = "espidf" , target_os = "redox" , target_os = "wasi" ) ) ) ]
362
+ #[ cfg( not( target_os = "freebsd" ) ) ] // TODO: Investigate why these tests fail on FreeBSD.
362
363
#[ test]
363
364
fn test_unix_msg ( ) {
364
365
use rustix:: ffi:: CString ;
@@ -442,6 +443,7 @@ fn test_abstract_unix_msg_unconnected() {
442
443
443
444
#[ cfg( not( any( target_os = "redox" , target_os = "wasi" ) ) ) ]
444
445
#[ cfg( feature = "pipe" ) ]
446
+ #[ cfg( not( target_os = "freebsd" ) ) ] // TODO: Investigate why these tests fail on FreeBSD.
445
447
#[ test]
446
448
fn test_unix_msg_with_scm_rights ( ) {
447
449
crate :: init ( ) ;
@@ -681,6 +683,7 @@ fn test_unix_peercred() {
681
683
/// over multiple control messages.
682
684
#[ cfg( not( any( target_os = "redox" , target_os = "wasi" ) ) ) ]
683
685
#[ cfg( feature = "pipe" ) ]
686
+ #[ cfg( not( target_os = "freebsd" ) ) ] // TODO: Investigate why these tests fail on FreeBSD.
684
687
#[ test]
685
688
fn test_unix_msg_with_combo ( ) {
686
689
crate :: init ( ) ;
You can’t perform that action at this time.
0 commit comments