From f4c0c0ff42e81a47c4e1e6985db62a28a8576406 Mon Sep 17 00:00:00 2001 From: Aaron Turon Date: Thu, 18 Dec 2014 18:56:28 -0800 Subject: [PATCH] Disable stack overflow test on android, which seems to be failing spuriously. cc https://github.com/rust-lang/rust/issues/20004 --- src/test/run-pass/out-of-stack.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/run-pass/out-of-stack.rs b/src/test/run-pass/out-of-stack.rs index 7f2f9f9ece8..81e75ba2cd5 100644 --- a/src/test/run-pass/out-of-stack.rs +++ b/src/test/run-pass/out-of-stack.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// ignore-android: FIXME (#20004) + #![feature(asm)] use std::io::process::Command;