summaryrefslogtreecommitdiff
path: root/test/sys/test_aio.rs
diff options
context:
space:
mode:
authorBryant Mairs <bryant@mai.rs>2017-07-09 13:19:41 -0700
committerBryant Mairs <bryant@mai.rs>2017-07-24 17:34:16 -0700
commitceab572557c9dfa7078bef8a7155236da38aeeaf (patch)
treebab26780c0730ae1eb7007d6adc466be553ecdc9 /test/sys/test_aio.rs
parent52ceafd325ccc27141bb12d366eddccdb474af59 (diff)
downloadnix-ceab572557c9dfa7078bef8a7155236da38aeeaf.zip
Disable failing tests on mips64
These are assumed to be QEMU issues, as they also fail on mips.
Diffstat (limited to 'test/sys/test_aio.rs')
-rw-r--r--test/sys/test_aio.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/sys/test_aio.rs b/test/sys/test_aio.rs
index 54ee5a96..e4b48b8d 100644
--- a/test/sys/test_aio.rs
+++ b/test/sys/test_aio.rs
@@ -241,7 +241,7 @@ extern fn sigfunc(_: c_int) {
// Test an aio operation with completion delivered by a signal
// FIXME: This test is ignored on mips because of failures in qemu in CI
#[test]
-#[cfg_attr(any(all(target_env = "musl", target_arch = "x86_64"), target_arch = "mips"), ignore)]
+#[cfg_attr(any(all(target_env = "musl", target_arch = "x86_64"), target_arch = "mips", target_arch = "mips64"), ignore)]
fn test_write_sigev_signal() {
#[allow(unused_variables)]
let m = ::SIGNAL_MTX.lock().expect("Mutex got poisoned by another test");
@@ -369,10 +369,10 @@ fn test_lio_listio_nowait() {
// Test lio_listio with LIO_NOWAIT and a SigEvent to indicate when all AioCb's
// are complete.
-// FIXME: This test is ignored on mips because of failures in qemu in CI.
+// FIXME: This test is ignored on mips/mips64 because of failures in qemu in CI.
#[test]
#[cfg(not(any(target_os = "ios", target_os = "macos")))]
-#[cfg_attr(any(target_arch = "mips", target_env = "musl"), ignore)]
+#[cfg_attr(any(target_arch = "mips", target_arch = "mips64", target_env = "musl"), ignore)]
fn test_lio_listio_signal() {
#[allow(unused_variables)]
let m = ::SIGNAL_MTX.lock().expect("Mutex got poisoned by another test");