about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-05-09 11:01:42 -0700
committerbors <bors@rust-lang.org>2014-05-09 11:01:42 -0700
commit47ecc2e8894d34d57cb2408012f41e578c145f01 (patch)
treef1445cb9122577f69230ff8e7ee6e6dae36355c8 /src/libstd
parent58d540f0c6cdab817aba3705c9d4842b995ab4c9 (diff)
parent426d022732d02a86d53076e8a35e081f2e29c7cb (diff)
downloadrust-47ecc2e8894d34d57cb2408012f41e578c145f01.tar.gz
rust-47ecc2e8894d34d57cb2408012f41e578c145f01.zip
auto merge of #14046 : alexcrichton/rust/ignore-a-test-on-freebsd, r=kballard
This test runs successfully manually, but the bots are having trouble getting
this test to pass. Ignore it on freebsd for now.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/io/net/tcp.rs31
1 files changed, 18 insertions, 13 deletions
diff --git a/src/libstd/io/net/tcp.rs b/src/libstd/io/net/tcp.rs
index 09b88ccaa7e..a9aa871d926 100644
--- a/src/libstd/io/net/tcp.rs
+++ b/src/libstd/io/net/tcp.rs
@@ -947,21 +947,26 @@ mod test {
 
         // Also make sure that even though the timeout is expired that we will
         // continue to receive any pending connections.
-        let (tx, rx) = channel();
-        spawn(proc() {
-            tx.send(TcpStream::connect(addr).unwrap());
-        });
-        let l = rx.recv();
-        for i in range(0, 1001) {
-            match a.accept() {
-                Ok(..) => break,
-                Err(ref e) if e.kind == TimedOut => {}
-                Err(e) => fail!("error: {}", e),
+        //
+        // FIXME: freebsd apparently never sees the pending connection, but
+        //        testing manually always works. Need to investigate this
+        //        flakiness.
+        if !cfg!(target_os = "freebsd") {
+            let (tx, rx) = channel();
+            spawn(proc() {
+                tx.send(TcpStream::connect(addr).unwrap());
+            });
+            let l = rx.recv();
+            for i in range(0, 1001) {
+                match a.accept() {
+                    Ok(..) => break,
+                    Err(ref e) if e.kind == TimedOut => {}
+                    Err(e) => fail!("error: {}", e),
+                }
+                ::task::deschedule();
+                if i == 1000 { fail!("should have a pending connection") }
             }
-            ::task::deschedule();
-            if i == 1000 { fail!("should have a pending connection") }
         }
-        drop(l);
 
         // Unset the timeout and make sure that this always blocks.
         a.set_timeout(None);