summaryrefslogtreecommitdiff
path: root/test/sys/test_select.rs
diff options
context:
space:
mode:
authorBryant Mairs <bryant@mai.rs>2017-04-17 11:49:16 -0700
committerBryant Mairs <bryant@mai.rs>2017-06-06 09:53:06 -0700
commit284d69a18c43398c9866d8e42842964745f9ee92 (patch)
treeae6f4f3c36f48d44eb9e24d26c456d1522b291ab /test/sys/test_select.rs
parentb1d92311560146677a51d8a8b11fe014d6f4860a (diff)
downloadnix-284d69a18c43398c9866d8e42842964745f9ee92.zip
Skip failing MIPS tests
Diffstat (limited to 'test/sys/test_select.rs')
-rw-r--r--test/sys/test_select.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sys/test_select.rs b/test/sys/test_select.rs
index 46083ffa..d50c7d74 100644
--- a/test/sys/test_select.rs
+++ b/test/sys/test_select.rs
@@ -35,10 +35,10 @@ fn test_fdset() {
// `select()` returns a 0 instead of a 1. Since this test has only been run on
// qemu, it's unclear if this is a OS or qemu bug. Just disable it on that arch
// for now.
-// FIXME: Fix tests for powerpc
+// FIXME: Fix tests for powerpc and mips
// FIXME: Add a link to an upstream qemu bug if there is one
#[test]
-#[cfg_attr(target_arch = "powerpc", ignore)]
+#[cfg_attr(any(target_arch = "powerpc", target_arch = "mips"), ignore)]
fn test_select() {
let (r1, w1) = pipe().unwrap();
write(w1, b"hi!").unwrap();