about summary refs log tree commit diff
path: root/src/libtest
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-30 12:26:44 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-30 14:53:34 -0800
commit3a2530d611fc92bd8094ec1745a927e059ac432a (patch)
tree0e02c7b12ca7ab267ba36903a535ec3cb286a23e /src/libtest
parent188d7c0bc36e69b99f6bdefd613027e53fa8b2d0 (diff)
downloadrust-3a2530d611fc92bd8094ec1745a927e059ac432a.tar.gz
rust-3a2530d611fc92bd8094ec1745a927e059ac432a.zip
Test fixes and rebase conflicts
Also some tidying up of a bunch of crate attributes
Diffstat (limited to 'src/libtest')
-rw-r--r--src/libtest/lib.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs
index da893ec251a..f22c58c54a6 100644
--- a/src/libtest/lib.rs
+++ b/src/libtest/lib.rs
@@ -25,27 +25,27 @@
 
 #![crate_name = "test"]
 #![unstable(feature = "test")]
-#![feature(staged_api)]
 #![staged_api]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
        html_favicon_url = "http://www.rust-lang.org/favicon.ico",
        html_root_url = "http://doc.rust-lang.org/nightly/")]
-#![allow(unknown_features)]
+
+#![cfg_attr(not(stage0), allow(unused_mut))] // NOTE: remove after stage0 snap
+
 #![feature(asm, slicing_syntax)]
 #![feature(box_syntax)]
-#![allow(unknown_features)] #![feature(int_uint)]
 #![feature(collections)]
 #![feature(core)]
+#![feature(hash)]
+#![feature(int_uint)]
 #![feature(io)]
 #![feature(os)]
 #![feature(path)]
 #![feature(rustc_private)]
+#![feature(staged_api)]
 #![feature(std_misc)]
-#![feature(hash)]
-// NOTE(stage0): remove cfg_attr after a snapshot
-#![cfg_attr(not(stage0), allow(unused_mut))]
 
 extern crate getopts;
 extern crate serialize;