summary refs log tree commit diff
path: root/src/libstd/rt/io
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-08-18 17:11:45 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-09-06 11:12:49 -0700
commitb4c36c2d1b8079cdb14bd3bf85c1ffc43f1f1d15 (patch)
treeceec36b952fe9b00f2c77c71e2f15fe8d058bafe /src/libstd/rt/io
parentd39cec65b025ad4c6de50e778ffd1177279b5b3d (diff)
downloadrust-b4c36c2d1b8079cdb14bd3bf85c1ffc43f1f1d15.tar.gz
rust-b4c36c2d1b8079cdb14bd3bf85c1ffc43f1f1d15.zip
Upgrade libuv to the current master (again)
This is a reopening of the libuv-upgrade part of #8645. Hopefully this won't
cause random segfaults all over the place. The windows regression in testing
should also be fixed (it shouldn't build the whole compiler twice).

A notable difference from before is that gyp is now a git submodule instead of
always git-cloned at make time. This allows bundling for releases more easily.

Closes #8850
Diffstat (limited to 'src/libstd/rt/io')
-rw-r--r--src/libstd/rt/io/net/tcp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt/io/net/tcp.rs b/src/libstd/rt/io/net/tcp.rs
index b7cb703eb25..b533ebe923b 100644
--- a/src/libstd/rt/io/net/tcp.rs
+++ b/src/libstd/rt/io/net/tcp.rs
@@ -182,7 +182,7 @@ mod test {
         do run_in_newsched_task {
             let mut called = false;
             do io_error::cond.trap(|e| {
-                assert!(e.kind == ConnectionRefused);
+                assert_eq!(e.kind, ConnectionRefused);
                 called = true;
             }).inside {
                 let addr = SocketAddr { ip: Ipv4Addr(0, 0, 0, 0), port: 1 };