File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
branches/incoming/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 @@ -6,7 +6,7 @@ refs/heads/try: 8eb2bab100b42f0ba751552d8eff00eb2134c55a
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
- refs/heads/incoming: 25c3c363a82c1bd45065b4f865ef1a086e0b3907
9
+ refs/heads/incoming: a04ba76f8e436d1c1919b0a97bc91190c7252d7a
10
10
refs/heads/dist-snap: 8b98e5a296d95c5e832db0756828e5bec31c6f50
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
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