1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Disable "main_context_futures" tests on arm32, they cause the testsuite
to fail erratically with "signal: 6, SIGABRT: process abort signal",
there is no obvious link between cause and effect, the problem was
narrowed down by painful trial and error.
Initially these tests were only disabled on armel, but I have since seen similar
sporadic testsuite crashes on armhf, so I am skipping them on all arm32 systems
--- a/src/main_context_futures.rs
+++ b/src/main_context_futures.rs
@@ -702,6 +702,7 @@
}
#[cfg(test)]
+#[cfg(not(target_arch = "arm"))]
mod tests {
use std::{sync::mpsc, thread};
|