We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa40342 commit d1fa608Copy full SHA for d1fa608
test/test_ptymaster_drop.rs
@@ -13,7 +13,7 @@ use std::os::unix::io::AsRawFd;
13
#[should_panic(expected = "Closing an invalid file descriptor!")]
14
// In Travis on i686-unknown-linux-musl, this test gets SIGABRT. I don't know
15
// why. It doesn't happen on any other target, and it doesn't happen on my PC.
16
-#[cfg_attr(all(target_env = "musl", target_arch = "i686"), ignore)]
+#[cfg_attr(all(target_env = "musl", target_arch = "x86"), ignore)]
17
fn test_double_close() {
18
let m = posix_openpt(O_RDWR).unwrap();
19
close(m.as_raw_fd()).unwrap();
0 commit comments