@@ -137,7 +137,7 @@ index a17c094..5bb11d2 100644
137
137
#[test]
138
138
+ #[ignore]
139
139
fn from_str_issue7588() {
140
- let u : Option<u8> = u8::from_str_radix("1000", 10).ok();
140
+ let u: Option<u8> = u8::from_str_radix("1000", 10).ok();
141
141
assert_eq!(u, None);
142
142
@@ -613,11 +614,9 @@ test_impl_try_from_signed_to_unsigned_err! { test_try_i64u32, i64, u32 }
143
143
test_impl_try_from_signed_to_unsigned_err! { test_try_i128u8, i128, u8 }
@@ -152,21 +152,21 @@ index a17c094..5bb11d2 100644
152
152
cfg_block! {
153
153
#[cfg(target_pointer_width = "16")] {
154
154
@@ -640,6 +639,7 @@ macro_rules! test_float {
155
- ($modname: ident, $fty: ty, $inf: expr, $neginf: expr, $nan: expr) => { mod $modname {
156
- // FIXME(nagisa): these tests should test for sign of -0.0
157
- #[test]
158
- + #[ignore]
159
- fn min() {
160
- assert_eq!((0.0 as $fty).min(0.0), 0.0);
161
- assert_eq!((-0.0 as $fty).min(-0.0), -0.0);
155
+ mod $modname {
156
+ // FIXME(nagisa): these tests should test for sign of -0.0
157
+ #[test]
158
+ + #[ignore]
159
+ fn min() {
160
+ assert_eq!((0.0 as $fty).min(0.0), 0.0);
161
+ assert_eq!((-0.0 as $fty).min(-0.0), -0.0);
162
162
@@ -662,6 +662,7 @@ macro_rules! test_float {
163
- assert!(($nan as $fty).min($nan).is_nan());
164
- }
165
- #[test]
166
- + #[ignore]
167
- fn max() {
168
- assert_eq!((0.0 as $fty).max(0.0), 0.0);
169
- assert_eq!((-0.0 as $fty).max(-0.0), -0.0);
163
+ assert!(($nan as $fty).min($nan).is_nan());
164
+ }
165
+ #[test]
166
+ + #[ignore]
167
+ fn max() {
168
+ assert_eq!((0.0 as $fty).max(0.0), 0.0);
169
+ assert_eq!((-0.0 as $fty).max(-0.0), -0.0);
170
170
diff --git a/src/libcore/tests/time.rs b/src/libcore/tests/time.rs
171
171
index fac70c4..9107a02 100644
172
172
--- a/src/libcore/tests/time.rs
0 commit comments