Skip to content

Commit bb02118

Browse files
committed
Disable more tests that never finish on mips64
1 parent a79ec43 commit bb02118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/sys/test_aio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ extern fn sigfunc(_: c_int) {
244244
// Test an aio operation with completion delivered by a signal
245245
// FIXME: This test is ignored on mips because of failures in qemu in CI
246246
#[test]
247-
#[cfg_attr(any(all(target_env = "musl", target_arch = "x86_64"), target_arch = "mips"), ignore)]
247+
#[cfg_attr(any(all(target_env = "musl", target_arch = "x86_64"), target_arch = "mips", target_arch = "mips64"), ignore)]
248248
fn test_write_sigev_signal() {
249249
let _ = SIGUSR2_MTX.lock().expect("Mutex got poisoned by another test");
250250
let sa = SigAction::new(SigHandler::Handler(sigfunc),

0 commit comments

Comments
 (0)