Skip to content

Commit 8ded99c

Browse files
committed
Remove ignore-fast that has cropped up
1 parent 42847c8 commit 8ded99c

9 files changed

+2
-13
lines changed

src/test/compile-fail/trace_macros-format.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-fast feature doesn't work
1211
#![feature(macro_rules, trace_macros)]
1312

1413
fn main() {

src/test/run-pass/attr-shebang.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
#![feature(bogus)]
33
pub fn main() { }
44
// ignore-license
5-
// ignore-fast

src/test/run-pass/attr.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-fast
12-
1311
#[main]
1412
fn foo() {
1513
}

src/test/run-pass/deep-vector.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
// ignore-test
12-
// ignore-fast
1312
//
1413
// Too big for our poor macro infrastructure.
1514

src/test/run-pass/deep-vector2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
// ignore-test
12-
// ignore-fast
1312
//
1413
// Too big for our poor macro infrastructure.
1514

src/test/run-pass/log_syntax-trace_macros-macro-locations.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-fast feature doesn't work
12-
#[feature(trace_macros, log_syntax)];
11+
#![feature(trace_macros, log_syntax)]
1312

1413
// make sure these macros can be used as in the various places that
1514
// macros can occur.

src/test/run-pass/macro-meta-items.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-fast
1211
// ignore-pretty - token trees can't pretty print
1312
// compile-flags: --cfg foo
1413

15-
#[feature(macro_rules)];
14+
#![feature(macro_rules)]
1615

1716
macro_rules! compiles_fine {
1817
($at:meta) => {

src/test/run-pass/overloaded-autoderef-xcrate.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-fast
1211
// aux-build:overloaded_autoderef_xc.rs
1312

1413
extern crate overloaded_autoderef_xc;

src/test/run-pass/sigpipe-should-be-ignored.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-fast
12-
1311
// Be sure that when a SIGPIPE would have been received that the entire process
1412
// doesn't die in a ball of fire, but rather it's gracefully handled.
1513

0 commit comments

Comments
 (0)