about summary refs log tree commit diff
path: root/src/libstd/num
diff options
context:
space:
mode:
authorVadim Chugunov <vadimcn@gmail.com>2013-08-19 15:40:37 -0700
committerVadim Chugunov <vadimcn@gmail.com>2013-08-22 20:02:20 -0700
commit12ecdb6381049e468ae56bf2e049ee885e185d2c (patch)
treef24d6c0d18079a717fd724dcacaefb104e297905 /src/libstd/num
parent9e4fddeadea70d2e9d04234b248ab119e5310630 (diff)
downloadrust-12ecdb6381049e468ae56bf2e049ee885e185d2c.tar.gz
rust-12ecdb6381049e468ae56bf2e049ee885e185d2c.zip
Enabled unit tests in std and extra.
Diffstat (limited to 'src/libstd/num')
-rw-r--r--src/libstd/num/int_macros.rs1
-rw-r--r--src/libstd/num/uint_macros.rs4
2 files changed, 0 insertions, 5 deletions
diff --git a/src/libstd/num/int_macros.rs b/src/libstd/num/int_macros.rs
index 4a7a5e32b32..e2218ce2736 100644
--- a/src/libstd/num/int_macros.rs
+++ b/src/libstd/num/int_macros.rs
@@ -919,7 +919,6 @@ mod tests {
 
     #[test]
     #[should_fail]
-    #[ignore(cfg(windows))]
     fn test_range_step_zero_step() {
         do range_step(0,10,0) |_i| { true };
     }
diff --git a/src/libstd/num/uint_macros.rs b/src/libstd/num/uint_macros.rs
index 90a14503a8d..d81a2756ad8 100644
--- a/src/libstd/num/uint_macros.rs
+++ b/src/libstd/num/uint_macros.rs
@@ -638,14 +638,12 @@ mod tests {
 
     #[test]
     #[should_fail]
-    #[ignore(cfg(windows))]
     pub fn to_str_radix1() {
         100u.to_str_radix(1u);
     }
 
     #[test]
     #[should_fail]
-    #[ignore(cfg(windows))]
     pub fn to_str_radix37() {
         100u.to_str_radix(37u);
     }
@@ -697,13 +695,11 @@ mod tests {
 
     #[test]
     #[should_fail]
-    #[ignore(cfg(windows))]
     fn test_range_step_zero_step_up() {
         do range_step(0,10,0) |_i| { true };
     }
     #[test]
     #[should_fail]
-    #[ignore(cfg(windows))]
     fn test_range_step_zero_step_down() {
         do range_step(0,-10,0) |_i| { true };
     }