Ignore regex tests (regular, cfail and benchmark) on Windows (for now).

This commit is contained in:
Andrew Gallant 2014-04-25 01:37:27 -04:00
parent 09a8b38550
commit 7269bc77e1
3 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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

View File

@ -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)]