core: fix windows breakage from 982cf90
, r=burningtree.
This commit is contained in:
parent
625405562c
commit
07d0af151a
2 changed files with 3 additions and 0 deletions
|
@ -412,6 +412,7 @@ pub fn test_ranges() {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
#[should_fail]
|
#[should_fail]
|
||||||
|
#[ignore(cfg(windows))]
|
||||||
fn test_range_step_zero_step() {
|
fn test_range_step_zero_step() {
|
||||||
for range_step(0,10,0) |_i| {}
|
for range_step(0,10,0) |_i| {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -397,11 +397,13 @@ pub fn test_ranges() {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
#[should_fail]
|
#[should_fail]
|
||||||
|
#[ignore(cfg(windows))]
|
||||||
fn test_range_step_zero_step_up() {
|
fn test_range_step_zero_step_up() {
|
||||||
for range_step(0,10,0) |_i| {}
|
for range_step(0,10,0) |_i| {}
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
#[should_fail]
|
#[should_fail]
|
||||||
|
#[ignore(cfg(windows))]
|
||||||
fn test_range_step_zero_step_down() {
|
fn test_range_step_zero_step_down() {
|
||||||
for range_step(0,-10,0) |_i| {}
|
for range_step(0,-10,0) |_i| {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue