Skip to content

Commit e34e574

Browse files
committed
test: disable uds conflict test on redox
It's just too slow.
1 parent 772c795 commit e34e574

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/namedtempfile.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,8 @@ fn test_make_uds() {
585585
assert!(temp_sock.path().exists());
586586
}
587587

588-
#[cfg(unix)]
588+
// This works(ish) on redox, but it's really slow.
589+
#[cfg(all(unix, not(target_os = "redox")))]
589590
#[test]
590591
fn test_make_uds_conflict() {
591592
use std::io::ErrorKind;

0 commit comments

Comments
 (0)