Skip to content

Commit

Permalink
Skip test_aio_cancel_all on musl
Browse files Browse the repository at this point in the history
I suspect that the segfault is due to a stack overflow on musl's signal
stack, but I can't reproduce the failure locally.

Fixes #1169
  • Loading branch information
asomers committed Dec 23, 2019
1 parent 1282815 commit a78ddbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sys/test_aio.rs
Expand Up @@ -47,7 +47,7 @@ fn test_accessors() {
// our bindings. So it's sufficient to check that AioCb.cancel returned any
// AioCancelStat value.
#[test]
#[cfg_attr(all(target_env = "musl", target_arch = "x86_64"), ignore)]
#[cfg_attr(target_env = "musl", ignore)]
fn test_cancel() {
let wbuf: &[u8] = b"CDEF";

Expand All @@ -72,7 +72,7 @@ fn test_cancel() {

// Tests using aio_cancel_all for all outstanding IOs.
#[test]
#[cfg_attr(all(target_env = "musl", target_arch = "x86_64"), ignore)]
#[cfg_attr(target_env = "musl", ignore)]
fn test_aio_cancel_all() {
let wbuf: &[u8] = b"CDEF";

Expand Down

0 comments on commit a78ddbc

Please sign in to comment.