Auto merge of #43180 - oli-obk:compiletest, r=alexcrichton

Reduce the usage of features in compiletest and libtest
This commit is contained in:
bors 2017-07-14 19:35:37 +00:00
commit 6d9d82d3df
4 changed files with 2 additions and 4 deletions

1
src/Cargo.lock generated
View File

@ -284,6 +284,7 @@ dependencies = [
"env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
"filetime 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.26 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -35,9 +35,7 @@
#![feature(asm)]
#![feature(libc)]
#![feature(rustc_private)]
#![feature(set_stdio)]
#![feature(staged_api)]
#![feature(panic_unwind)]
extern crate getopts;

View File

@ -10,3 +10,4 @@ filetime = "0.1"
getopts = "0.2"
log = "0.3"
rustc-serialize = "0.3"
libc = "0.2"

View File

@ -10,9 +10,7 @@
#![crate_name = "compiletest"]
#![feature(box_syntax)]
#![feature(test)]
#![feature(libc)]
#![deny(warnings)]