Skip to content

Commit 6d9d82d

Browse files
committed
Auto merge of #43180 - oli-obk:compiletest, r=alexcrichton
Reduce the usage of features in compiletest and libtest
2 parents ae4803a + cb92ab9 commit 6d9d82d

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

src/Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/libtest/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@
3535

3636
#![feature(asm)]
3737
#![feature(libc)]
38-
#![feature(rustc_private)]
3938
#![feature(set_stdio)]
40-
#![feature(staged_api)]
4139
#![feature(panic_unwind)]
4240

4341
extern crate getopts;

src/tools/compiletest/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ filetime = "0.1"
1010
getopts = "0.2"
1111
log = "0.3"
1212
rustc-serialize = "0.3"
13+
libc = "0.2"

src/tools/compiletest/src/main.rs

-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010

1111
#![crate_name = "compiletest"]
1212

13-
#![feature(box_syntax)]
1413
#![feature(test)]
15-
#![feature(libc)]
1614

1715
#![deny(warnings)]
1816

0 commit comments

Comments
 (0)