Skip to content

Commit c936089

Browse files
committed
---
yaml --- r: 144981 b: refs/heads/try2 c: 4825db4 h: refs/heads/master i: 144979: bf1bcd5 v: v3
1 parent cb73da0 commit c936089

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 9a5f95a82c2836fa6c57ede49d27c060f2377fa1
8+
refs/heads/try2: 4825db44c81ca2b122282dfb59aa705ad2475e5d
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/libstd/rt/io/net/tcp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ impl Writer for TcpStream {
9393
}
9494
}
9595

96-
fn flush(&mut self) { fail!() }
96+
fn flush(&mut self) { /* no-op */ }
9797
}
9898

9999
pub struct TcpListener(~RtioTcpListenerObject);

branches/try2/src/libstd/unstable/dynamic_lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ mod test {
9090
use libc;
9191

9292
#[test]
93-
#[ignore(cfg(windows))] // FIXME #8818
93+
// #[ignore(cfg(windows))] // FIXME #8818
94+
#[ignore] // FIXME #9137 this library isn't thread-safe
9495
fn test_loading_cosine() {
9596
// The math library does not need to be loaded since it is already
9697
// statically linked in
@@ -121,6 +122,7 @@ mod test {
121122
#[cfg(target_os = "linux")]
122123
#[cfg(target_os = "macos")]
123124
#[cfg(target_os = "freebsd")]
125+
#[ignore] // FIXME #9137 this library isn't thread-safe
124126
fn test_errors_do_not_crash() {
125127
// Open /dev/null as a library to get an error, and make sure
126128
// that only causes an error, and not a crash.

0 commit comments

Comments
 (0)