about summary refs log tree commit diff
diff options
context:
space:
mode:
authorklutzy <klutzytheklutzy@gmail.com>2014-08-12 23:23:10 +0900
committerklutzy <klutzytheklutzy@gmail.com>2014-08-18 13:44:29 +0900
commitd7916f8d4416e739aec3226adb0df1077e15a80a (patch)
tree049b49fd4ff50db1ce50cc6963c20bdbc2d64c4e
parent3b651240633e01199f6486f56619bcc38b667e34 (diff)
downloadrust-d7916f8d4416e739aec3226adb0df1077e15a80a.tar.gz
rust-d7916f8d4416e739aec3226adb0df1077e15a80a.zip
regex: Enable test on Windows
Fixes #13725
-rw-r--r--src/libregex/lib.rs3
-rw-r--r--src/test/bench/shootout-regex-dna.rs2
-rw-r--r--src/test/compile-fail-fulldeps/syntax-extension-regex-invalid.rs2
-rw-r--r--src/test/compile-fail-fulldeps/syntax-extension-regex-unused-static.rs2
-rw-r--r--src/test/compile-fail-fulldeps/syntax-extension-regex-unused.rs2
5 files changed, 1 insertions, 10 deletions
diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs
index fae3e598680..1d25a0c31d8 100644
--- a/src/libregex/lib.rs
+++ b/src/libregex/lib.rs
@@ -395,8 +395,7 @@ mod parse;
 mod re;
 mod vm;
 
-// FIXME(#13725) windows needs fixing.
-#[cfg(test, not(windows))]
+#[cfg(test)]
 mod test;
 
 /// The `native` 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 606f075d96d..433d62c7e96 100644
--- a/src/test/bench/shootout-regex-dna.rs
+++ b/src/test/bench/shootout-regex-dna.rs
@@ -38,8 +38,6 @@
 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 // OF THE POSSIBILITY OF SUCH DAMAGE.
 
-// FIXME(#13725) windows needs fixing.
-// ignore-windows
 // ignore-stage1
 // ignore-cross-compile #12102
 
diff --git a/src/test/compile-fail-fulldeps/syntax-extension-regex-invalid.rs b/src/test/compile-fail-fulldeps/syntax-extension-regex-invalid.rs
index 64ef1abe7de..32e0bff1991 100644
--- a/src/test/compile-fail-fulldeps/syntax-extension-regex-invalid.rs
+++ b/src/test/compile-fail-fulldeps/syntax-extension-regex-invalid.rs
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// FIXME(#13725) windows needs fixing.
-// ignore-windows
 // ignore-stage1
 
 #![feature(phase)]
diff --git a/src/test/compile-fail-fulldeps/syntax-extension-regex-unused-static.rs b/src/test/compile-fail-fulldeps/syntax-extension-regex-unused-static.rs
index 8d859c3f7ba..d7135bc5c91 100644
--- a/src/test/compile-fail-fulldeps/syntax-extension-regex-unused-static.rs
+++ b/src/test/compile-fail-fulldeps/syntax-extension-regex-unused-static.rs
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// FIXME(#13725) windows needs fixing.
-// ignore-windows
 // ignore-stage1
 
 #![feature(phase)]
diff --git a/src/test/compile-fail-fulldeps/syntax-extension-regex-unused.rs b/src/test/compile-fail-fulldeps/syntax-extension-regex-unused.rs
index 304ad7423b1..c17f3c6da50 100644
--- a/src/test/compile-fail-fulldeps/syntax-extension-regex-unused.rs
+++ b/src/test/compile-fail-fulldeps/syntax-extension-regex-unused.rs
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// FIXME(#13725) windows needs fixing.
-// ignore-windows
 // ignore-stage1
 
 #![feature(phase)]