diff options
| author | bors <bors@rust-lang.org> | 2014-03-16 12:21:26 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-03-16 12:21:26 -0700 |
| commit | 76478492ef087ad0fcdcc873940a048507445c7a (patch) | |
| tree | bfb8963384a1aba3af8b85bfcfb1b6ac71fef3d7 | |
| parent | 7156ded5bcf6831a6da22688d08f71985fdc81df (diff) | |
| parent | cdd4f6e65d2d0f105d9669295f6ab90b15974f80 (diff) | |
| download | rust-76478492ef087ad0fcdcc873940a048507445c7a.tar.gz rust-76478492ef087ad0fcdcc873940a048507445c7a.zip | |
auto merge of #12933 : edwardw/rust/fallout, r=huonw
The same test was missed in chan/port renaming PR #12815 and was fixed in #12880: > This was missed because it is skipped on linux and windows, and the mac bots were moving at the time the PR landed. It seems the same happened to the liblog PR.
| -rw-r--r-- | src/test/run-pass/tcp-stress.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/run-pass/tcp-stress.rs b/src/test/run-pass/tcp-stress.rs index b4d128e2655..61478e3fdb4 100644 --- a/src/test/run-pass/tcp-stress.rs +++ b/src/test/run-pass/tcp-stress.rs @@ -13,6 +13,10 @@ // ignore-android needs extra network permissions // exec-env:RUST_LOG=debug +#[feature(phase)]; +#[phase(syntax, link)] +extern crate log; + use std::libc; use std::io::net::ip::{Ipv4Addr, SocketAddr}; use std::io::net::tcp::{TcpListener, TcpStream}; |
