Skip to content

Commit d7916f8

Browse files
committed
regex: Enable test on Windows
Fixes rust-lang#13725
1 parent 3b65124 commit d7916f8

5 files changed

+1
-10
lines changed

src/libregex/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,7 @@ mod parse;
395395
mod re;
396396
mod vm;
397397

398-
// FIXME(#13725) windows needs fixing.
399-
#[cfg(test, not(windows))]
398+
#[cfg(test)]
400399
mod test;
401400

402401
/// The `native` 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
@@ -38,8 +38,6 @@
3838
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
3939
// OF THE POSSIBILITY OF SUCH DAMAGE.
4040

41-
// FIXME(#13725) windows needs fixing.
42-
// ignore-windows
4341
// ignore-stage1
4442
// ignore-cross-compile #12102
4543

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

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
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-windows
1311
// ignore-stage1
1412

1513
#![feature(phase)]

src/test/compile-fail-fulldeps/syntax-extension-regex-unused-static.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
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-windows
1311
// ignore-stage1
1412

1513
#![feature(phase)]

src/test/compile-fail-fulldeps/syntax-extension-regex-unused.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
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-windows
1311
// ignore-stage1
1412

1513
#![feature(phase)]

0 commit comments

Comments
 (0)