Skip to content

Commit

Permalink
Don't test on nightly
Browse files Browse the repository at this point in the history
I don't know why test_aio_suspend fails on Linux on nightly, but it's
unrelated to the compiler warnings, so we shouldn't hold up the rest of
the PR for it.
  • Loading branch information
asomers committed Jul 12, 2019
1 parent 549bfd2 commit c90053f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,6 @@ matrix:
- env: TARGET=x86_64-unknown-linux-gnu
rust: stable

# Ensure we're nightly compatible
- env: TARGET=x86_64-unknown-linux-gnu
rust: nightly

# Test that we can build with the lowest version of all dependencies.
# "cargo test" doesn't work because some of our dev-dependencies, like
# rand, can't build with thier own minimal dependencies.
Expand Down
6 changes: 0 additions & 6 deletions test/sys/test_aio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,6 @@ fn test_fsync_error() {
#[test]
#[cfg_attr(all(target_env = "musl", target_arch = "x86_64"), ignore)]
fn test_aio_suspend() {
// Glibc's aio_suspend implementation isn't async-signal-safe, and it causes
// assertions (within glibc) on Travis.
// https://sourceware.org/bugzilla/show_bug.cgi?id=13172
#[cfg(target_env = "glibc")]
let _m = ::SIGNAL_MTX.lock().expect("Mutex got poisoned by another test");

const INITIAL: &[u8] = b"abcdef123456";
const WBUF: &[u8] = b"CDEFG";
let timeout = TimeSpec::seconds(10);
Expand Down

0 comments on commit c90053f

Please sign in to comment.