diff options
| author | Edward Wang <edward.yu.wang@gmail.com> | 2014-03-16 21:18:17 +0800 |
|---|---|---|
| committer | Edward Wang <edward.yu.wang@gmail.com> | 2014-03-16 21:18:17 +0800 |
| commit | cdd4f6e65d2d0f105d9669295f6ab90b15974f80 (patch) | |
| tree | bc7d3fda238bcf0c51dc931fe266febb1382e2a5 | |
| parent | d73c899383249e14d9ab74745167f502c31295d3 (diff) | |
Fix a test that was missed in 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}; |
