From ceab572557c9dfa7078bef8a7155236da38aeeaf Mon Sep 17 00:00:00 2001 From: Bryant Mairs Date: Sun, 9 Jul 2017 13:19:41 -0700 Subject: Disable failing tests on mips64 These are assumed to be QEMU issues, as they also fail on mips. --- test/sys/test_aio.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/sys/test_aio.rs') 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"); -- cgit v1.2.3