Skip to content

Commit 5c8d49f

Browse files
committed
Don't test process_vm_readv on Travis arches that use qemu
1 parent 50eed01 commit 5c8d49f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/sys/test_uio.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,9 @@ fn test_preadv() {
193193

194194
#[test]
195195
#[cfg(any(target_os = "linux", target_os = "android"))]
196+
// qemu-user does not yet implement process_vm_readv, cf. PR #568
197+
#[cfg_attr(all(travis, any(target_arch = "arm", target_arch = "aarch64")),
198+
ignore)]
196199
fn test_process_vm_readv() {
197200
use nix::unistd::ForkResult::*;
198201
use nix::sys::signal::*;

0 commit comments

Comments
 (0)