summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-11-29 01:10:38 +0000
committerGitHub <noreply@github.com>2020-11-29 01:10:38 +0000
commitaf66aa2d37b6a7a94d0fea3463200898984106f6 (patch)
tree7b027307eece8d3d13f4c437866fc3c715c96fbd
parent1d43b2b1c4f1fba0f2e2d0c18ff8c9555d728c21 (diff)
parent4ff5595a1b1dbf06194144a128c5db70b2cf7491 (diff)
downloadnix-af66aa2d37b6a7a94d0fea3463200898984106f6.zip
Merge #1345
1345: Disable test-aio-drop in GNU environments r=asomers a=asomers This test occasionally fails in Travis on x86_64-unknown-linux-gnu. The failure takes the form of the test executable receiving a random signal. Sometimes SIGHUP, sometimes SIGKILL, etc. I think this must be a bug in glibc, even though I can't reproduce it in my development environment. But it interferes with CI too much to leave enabled. Co-authored-by: Alan Somers <asomers@gmail.com>
-rw-r--r--test/sys/test_aio_drop.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sys/test_aio_drop.rs b/test/sys/test_aio_drop.rs
index 71a2183b..784ee3ef 100644
--- a/test/sys/test_aio_drop.rs
+++ b/test/sys/test_aio_drop.rs
@@ -9,6 +9,7 @@
target_os = "macos",
target_os = "freebsd",
target_os = "netbsd")))]
+#[cfg_attr(target_env = "gnu", ignore = "Occasionally fails in Travis; glibc bug suspected")]
fn test_drop() {
use nix::sys::aio::*;
use nix::sys::signal::*;