Skip to content

Commit 7269bc7

Browse files
committed
Ignore regex tests (regular, cfail and benchmark) on Windows (for now).
1 parent 09a8b38 commit 7269bc7

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

src/libregex/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,8 @@ mod parse;
386386
mod re;
387387
mod vm;
388388

389-
#[cfg(test)]
389+
// FIXME(#13725) windows needs fixing.
390+
#[cfg(test, not(windows))]
390391
mod test;
391392

392393
/// The `program` module exists to support the `regex!` macro. Do not use.

src/test/bench/shootout-regex-dna.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// FIXME(#13725) windows needs fixing.
12+
// ignore-win32
1113
// ignore-stage1
1214
// ignore-cross-compile #12102
1315

src/test/compile-fail/syntax-extension-regex-invalid.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// FIXME(#13725) windows needs fixing.
12+
// ignore-win32
1113
// ignore-stage1
1214

1315
#![feature(phase)]

0 commit comments

Comments
 (0)