From 385e472ca0c60a8e2481f2bb80edfb8e22f8852f Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Thu, 26 Mar 2015 09:27:36 +0100 Subject: [PATCH] Update the feature gates for contenttest. --- tests/contenttest.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/contenttest.rs b/tests/contenttest.rs index 77210a8dbd8..e4ccb29c888 100644 --- a/tests/contenttest.rs +++ b/tests/contenttest.rs @@ -7,7 +7,15 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![feature(collections, core, env, io, os, path, rustc_private, std_misc, test)] +#![feature(collections)] +#![feature(core)] +#![feature(exit_status)] +#![feature(old_io)] +#![feature(old_path)] +#![feature(path)] +#![feature(rustc_private)] +#![feature(std_misc)] +#![feature(test)] extern crate getopts; extern crate test;