From 7269bc77e1d1f1babfd159db97024cbd535c47a7 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Fri, 25 Apr 2014 01:37:27 -0400 Subject: [PATCH] Ignore regex tests (regular, cfail and benchmark) on Windows (for now). --- src/libregex/lib.rs | 3 ++- src/test/bench/shootout-regex-dna.rs | 2 ++ src/test/compile-fail/syntax-extension-regex-invalid.rs | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs index 7dd27f196e093..cd5d387bfa0d6 100644 --- a/src/libregex/lib.rs +++ b/src/libregex/lib.rs @@ -386,7 +386,8 @@ mod parse; mod re; mod vm; -#[cfg(test)] +// FIXME(#13725) windows needs fixing. +#[cfg(test, not(windows))] mod test; /// The `program` module exists to support the `regex!` macro. Do not use. diff --git a/src/test/bench/shootout-regex-dna.rs b/src/test/bench/shootout-regex-dna.rs index 69c6c73afd77f..0f86b8043a02d 100644 --- a/src/test/bench/shootout-regex-dna.rs +++ b/src/test/bench/shootout-regex-dna.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// FIXME(#13725) windows needs fixing. +// ignore-win32 // ignore-stage1 // ignore-cross-compile #12102 diff --git a/src/test/compile-fail/syntax-extension-regex-invalid.rs b/src/test/compile-fail/syntax-extension-regex-invalid.rs index dd607568eb824..0e072dc1c060b 100644 --- a/src/test/compile-fail/syntax-extension-regex-invalid.rs +++ b/src/test/compile-fail/syntax-extension-regex-invalid.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// FIXME(#13725) windows needs fixing. +// ignore-win32 // ignore-stage1 #![feature(phase)]