From 201cd9e3f9e275e7e411d6e2633e59e2d42e478e Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Tue, 6 May 2014 12:36:39 -0700 Subject: [PATCH] Ignore tests broken by failing on ICE --- src/test/compile-fail/inherit-struct8.rs | 3 +++ src/test/compile-fail/issue-9725.rs | 2 ++ src/test/compile-fail/unsupported-cast.rs | 1 + 3 files changed, 6 insertions(+) diff --git a/src/test/compile-fail/inherit-struct8.rs b/src/test/compile-fail/inherit-struct8.rs index d1108349db15..858e7f5b6d94 100644 --- a/src/test/compile-fail/inherit-struct8.rs +++ b/src/test/compile-fail/inherit-struct8.rs @@ -8,6 +8,9 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// ignore-test FIXME: #13991 + + // Test struct inheritance. #![feature(struct_inherit)] diff --git a/src/test/compile-fail/issue-9725.rs b/src/test/compile-fail/issue-9725.rs index 2a0896380fd7..d5c18263c4c8 100644 --- a/src/test/compile-fail/issue-9725.rs +++ b/src/test/compile-fail/issue-9725.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// ignore-test FIXME: #13992 + struct A { foo: int } fn main() { diff --git a/src/test/compile-fail/unsupported-cast.rs b/src/test/compile-fail/unsupported-cast.rs index fbcad79ac46e..1fdba7d8b661 100644 --- a/src/test/compile-fail/unsupported-cast.rs +++ b/src/test/compile-fail/unsupported-cast.rs @@ -8,6 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// ignore-test FIXME: #13993 // error-pattern:unsupported cast extern crate libc;