Skip to content

Commit 72bfce7

Browse files
committed
---
yaml --- r: 104490 b: refs/heads/try c: c0e767b h: refs/heads/master v: v3
1 parent b28ddc4 commit 72bfce7

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 62f1d68439dcfd509eaca29887afa97f22938373
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 6e7f170fedd3c526a643c0b2d13863acd982be02
5-
refs/heads/try: 672097753a217d4990129cbdfab16ef8c9b08b21
5+
refs/heads/try: c0e767b00b325576b4d09b624a47382133db6163
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/libstd/io/fs.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1106,9 +1106,8 @@ mod test {
11061106
file.fsync().unwrap();
11071107
file.datasync().unwrap();
11081108
drop(file);
1109-
})
1109+
} #[ignore(cfg(windows))])
11101110

1111-
#[ignore(cfg(windows))] // FIXME(#11638)
11121111
iotest!(fn truncate_works() {
11131112
let tmpdir = tmpdir();
11141113
let path = tmpdir.join("in.txt");
@@ -1138,7 +1137,7 @@ mod test {
11381137
assert_eq!(File::open(&path).read_to_end().unwrap(),
11391138
(bytes!("fo", 0, 0, 0, 0, "wut")).to_owned());
11401139
drop(file);
1141-
})
1140+
} #[ignore(cfg(windows))]) // FIXME(#11638)
11421141

11431142
iotest!(fn open_flavors() {
11441143
let tmpdir = tmpdir();

branches/try/src/libstd/io/net/unix.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ mod tests {
192192
}, proc(_client) {
193193
// drop the client
194194
})
195-
})
195+
} #[ignore(cfg(windows))]) // FIXME(#12516)
196196

197197
iotest!(fn write_begone() {
198198
smalltest(proc(mut server) {

branches/try/src/libstd/io/process.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -823,11 +823,10 @@ mod tests {
823823
assert!(!p.wait().success());
824824
})
825825

826-
#[ignore(cfg(windows))]
827826
iotest!(fn test_exists() {
828827
let mut p = sleeper();
829828
assert!(Process::kill(p.id(), 0).is_ok());
830829
p.signal_kill().unwrap();
831830
assert!(!p.wait().success());
832-
})
831+
} #[ignore(cfg(windows))]) // FIXME(#12516)
833832
}

0 commit comments

Comments
 (0)