]> git.lizzy.rs Git - rust.git/commitdiff
Remove ignore-fast that has cropped up
authorAlex Crichton <alex@alexcrichton.com>
Thu, 3 Apr 2014 20:02:50 +0000 (13:02 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Sun, 6 Apr 2014 22:55:43 +0000 (15:55 -0700)
src/test/compile-fail/trace_macros-format.rs
src/test/run-pass/attr-shebang.rs
src/test/run-pass/attr.rs
src/test/run-pass/deep-vector.rs
src/test/run-pass/deep-vector2.rs
src/test/run-pass/log_syntax-trace_macros-macro-locations.rs
src/test/run-pass/macro-meta-items.rs
src/test/run-pass/overloaded-autoderef-xcrate.rs
src/test/run-pass/sigpipe-should-be-ignored.rs

index d5955601f2dc4965646a37497085675be11dbb2e..8e0000246757d9a9a75c5eac6dec97f4854feca3 100644 (file)
@@ -8,7 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast feature doesn't work
 #![feature(macro_rules, trace_macros)]
 
 fn main() {
index f4919f768b9cddd21f56be3b9c024a9542c3196e..95f3ea61dd87e6c309ff6e714816dc98721e4ea0 100644 (file)
@@ -2,4 +2,3 @@
 #![feature(bogus)]
 pub fn main() { }
 // ignore-license
-// ignore-fast
index 6a19a44e07420db516dcf3874a9e4df9c28dd8e5..2f30eb8154ff1c61c06be63dd8c2dfe0881b97e5 100644 (file)
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast
-
 #[main]
 fn foo() {
 }
index 6a05dafb17cec30130ca4a53ee69eb97b1d0611b..20785780d2c2f9efe47fde83b25c907f40339cf7 100644 (file)
@@ -9,7 +9,6 @@
 // except according to those terms.
 
 // ignore-test
-// ignore-fast
 //
 // Too big for our poor macro infrastructure.
 
index 615e94c3f4e59fc1dc70de7319dcfbb0da0e4d71..27258ed578ab08c03dff1e4dfddce683d2f2387f 100644 (file)
@@ -9,7 +9,6 @@
 // except according to those terms.
 
 // ignore-test
-// ignore-fast
 //
 // Too big for our poor macro infrastructure.
 
index a00ba6067dc7e062939e55b51a5c5a1dd03c575e..afcd154f6478bd95665b4a4abf2a9b3ed22c12f4 100644 (file)
@@ -8,8 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast feature doesn't work
-#[feature(trace_macros, log_syntax)];
+#![feature(trace_macros, log_syntax)]
 
 // make sure these macros can be used as in the various places that
 // macros can occur.
index cfcde320d99b1569da53357d4cdad4800e1c02d1..91f67abd8af4aa41e4329a259b794a5cfdf6b83e 100644 (file)
@@ -8,11 +8,10 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast
 // ignore-pretty - token trees can't pretty print
 // compile-flags: --cfg foo
 
-#[feature(macro_rules)];
+#![feature(macro_rules)]
 
 macro_rules! compiles_fine {
     ($at:meta) => {
index fc969093d23a913f25fbecb2dc3d3b12104e028b..f8dd729ec67dcd9bf2c919e86e299c886c1d911a 100644 (file)
@@ -8,7 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast
 // aux-build:overloaded_autoderef_xc.rs
 
 extern crate overloaded_autoderef_xc;
index 5c62ea2ad21e8a883ef91d65bd1d691607dd953f..957bcd0e4233f21eeb31e2fb2dda842affe14d50 100644 (file)
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast
-
 // Be sure that when a SIGPIPE would have been received that the entire process
 // doesn't die in a ball of fire, but rather it's gracefully handled.