File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
branches/auto/src/libcore Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
14
14
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
15
15
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
16
16
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17
- refs/heads/auto: 25c3c363a82c1bd45065b4f865ef1a086e0b3907
17
+ refs/heads/auto: a04ba76f8e436d1c1919b0a97bc91190c7252d7a
18
18
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
Original file line number Diff line number Diff line change @@ -1409,9 +1409,8 @@ mod tests {
1409
1409
setenv(~" USERPROFILE ", ~" /home/PaloAlto ");
1410
1410
fail_unless!(os::homedir() == Some(Path(" /home/MountainView ")));
1411
1411
1412
- option::iter(&oldhome, |s| setenv(~" HOME ", *s));
1413
- option::iter(&olduserprofile,
1414
- |s| setenv(~" USERPROFILE ", *s));
1412
+ oldhome.each(|s| {setenv(~" HOME ", *s);true});
1413
+ olduserprofile.each(|s| {setenv(~" USERPROFILE ", *s);true});
1415
1414
}
1416
1415
1417
1416
#[test]
Original file line number Diff line number Diff line change @@ -2692,6 +2692,7 @@ mod tests {
2692
2692
2693
2693
#[ test]
2694
2694
#[ should_fail]
2695
+ #[ ignore( cfg( windows) ) ]
2695
2696
fn test_last_empty ( ) {
2696
2697
let a: ~[ int ] = ~[ ] ;
2697
2698
a. last ( ) ;
You can’t perform that action at this time.
0 commit comments