Skip to content

Commit d1fa608

Browse files
committed
Apparently the target_arch is "x86", not "i686"
1 parent aa40342 commit d1fa608

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_ptymaster_drop.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use std::os::unix::io::AsRawFd;
1313
#[should_panic(expected = "Closing an invalid file descriptor!")]
1414
// In Travis on i686-unknown-linux-musl, this test gets SIGABRT. I don't know
1515
// 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)]
16+
#[cfg_attr(all(target_env = "musl", target_arch = "x86"), ignore)]
1717
fn test_double_close() {
1818
let m = posix_openpt(O_RDWR).unwrap();
1919
close(m.as_raw_fd()).unwrap();

0 commit comments

Comments
 (0)