From 5a9138f6035d3dde384ec2c2e821289eea6aa691 Mon Sep 17 00:00:00 2001 From: Jonathan Reem Date: Sun, 16 Mar 2014 16:09:10 -0400 Subject: [PATCH] Included the log crate because debug! has moved to liblog and this caused a failure during make check. --- src/test/run-pass/tcp-stress.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/run-pass/tcp-stress.rs b/src/test/run-pass/tcp-stress.rs index b4d128e2655fb..b7b31e4e6fba4 100644 --- a/src/test/run-pass/tcp-stress.rs +++ b/src/test/run-pass/tcp-stress.rs @@ -12,6 +12,8 @@ // ignore-fast // 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};