Skip to content

Commit 825bfeb

Browse files
committed
tests: remove ignore-stage1 where possible in proc_macro tests.
1 parent 9a87b8f commit 825bfeb

37 files changed

+4
-36
lines changed

src/test/compile-fail-fulldeps/proc-macro/attribute-with-error.rs

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

1111
// aux-build:attribute-with-error.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro)]
1514

src/test/compile-fail-fulldeps/proc-macro/attributes-included.rs

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

1111
// aux-build:attributes-included.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro, rustc_attrs)]
1514
#![warn(unused)]

src/test/compile-fail-fulldeps/proc-macro/derive-bad.rs

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

1111
// aux-build:derive-bad.rs
12-
// ignore-stage1
1312

1413
#[macro_use]
1514
extern crate derive_bad;

src/test/compile-fail-fulldeps/proc-macro/expand-to-unstable-2.rs

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

1111
// aux-build:derive-unstable-2.rs
12-
// ignore-stage1
1312

1413
#![allow(warnings)]
1514

src/test/compile-fail-fulldeps/proc-macro/expand-to-unstable.rs

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

1111
// aux-build:derive-unstable.rs
12-
// ignore-stage1
1312

1413
#![allow(warnings)]
1514

src/test/compile-fail-fulldeps/proc-macro/issue-38586.rs

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

1111
// aux-build:issue_38586.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro)]
1514

src/test/compile-fail-fulldeps/proc-macro/item-error.rs

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

1111
// aux-build:derive-b.rs
12-
// ignore-stage1
1312

1413
#![allow(warnings)]
1514

src/test/compile-fail-fulldeps/proc-macro/lints_in_proc_macros.rs

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

1111
// aux-build:bang_proc_macro2.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro)]
1514
#![allow(unused_macros)]

src/test/compile-fail-fulldeps/proc-macro/proc-macro-attributes.rs

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

1111
// aux-build:derive-b.rs
12-
// ignore-stage1
1312

1413
#![allow(warnings)]
1514

src/test/incremental-fulldeps/incremental_proc_macro.rs

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

1111
// aux-build:incremental_proc_macro_aux.rs
12-
// ignore-stage1
1312
// revisions: cfail1 cfail2
1413
// must-compile-successfully
1514

src/test/run-pass-fulldeps/compiler-calls.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// Test that the CompilerCalls interface to the compiler works.
1212

1313
// ignore-cross-compile
14+
// ignore-stage1
1415

1516
#![feature(rustc_private, path)]
1617
#![feature(core)]

src/test/run-pass-fulldeps/macro-quote-cond.rs

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

1111
// aux-build:cond_plugin.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro)]
1514

src/test/run-pass-fulldeps/macro-quote-test.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Test that a macro can emit delimiters with nothing inside - `()`, `{}`
1212

1313
// aux-build:hello_macro.rs
14-
// ignore-stage1
1514

1615
#![feature(proc_macro)]
1716

src/test/run-pass-fulldeps/proc-macro/add-impl.rs

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

1111
// aux-build:add-impl.rs
12-
// ignore-stage1
1312

1413
#[macro_use]
1514
extern crate add_impl;

src/test/run-pass-fulldeps/proc-macro/append-impl.rs

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

1111
// aux-build:append-impl.rs
12-
// ignore-stage1
1312

1413
#![allow(warnings)]
1514

src/test/run-pass-fulldeps/proc-macro/attr-args.rs

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

1111
// aux-build:attr-args.rs
12-
// ignore-stage1
1312

1413
#![allow(warnings)]
1514
#![feature(proc_macro)]

src/test/run-pass-fulldeps/proc-macro/attr-cfg.rs

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

1111
// aux-build:attr-cfg.rs
12-
// ignore-stage1
1312
// revisions: foo bar
1413

1514
#![feature(proc_macro)]

src/test/run-pass-fulldeps/proc-macro/attr-on-trait.rs

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

1111
// aux-build:attr-on-trait.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro)]
1514

src/test/run-pass-fulldeps/proc-macro/bang-macro.rs

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

1111
// aux-build:bang-macro.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro)]
1514

src/test/run-pass-fulldeps/proc-macro/count_compound_ops.rs

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

1111
// aux-build:count_compound_ops.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro)]
1514

src/test/run-pass-fulldeps/proc-macro/crate-var.rs

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

1111
// aux-build:double.rs
12-
// ignore-stage1
1312

1413
#![allow(unused)]
1514

src/test/run-pass-fulldeps/proc-macro/derive-attr-cfg.rs

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

1111
// aux-build:derive-attr-cfg.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro)]
1514

src/test/run-pass-fulldeps/proc-macro/derive-b.rs

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

1111
// aux-build:derive-b.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro)]
1514

src/test/run-pass-fulldeps/proc-macro/derive-same-struct.rs

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

1111
// aux-build:derive-same-struct.rs
12-
// ignore-stage1
1312

1413
#[macro_use]
1514
extern crate derive_same_struct;

src/test/run-pass-fulldeps/proc-macro/empty-crate.rs

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

1111
// aux-build:empty-crate.rs
12-
// ignore-stage1
1312

1413
#[macro_use]
1514
extern crate empty_crate;

src/test/run-pass-fulldeps/proc-macro/expand-with-a-macro.rs

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

1111
// aux-build:expand-with-a-macro.rs
12-
// ignore-stage1
1312

1413
#![deny(warnings)]
1514

src/test/run-pass-fulldeps/proc-macro/hygiene_example.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:hygiene_example_codegen.rs
1212
// aux-build:hygiene_example.rs
13-
// ignore-stage1
1413

1514
#![feature(proc_macro)]
1615

src/test/run-pass-fulldeps/proc-macro/issue-39889.rs

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

1111
// aux-build:issue-39889.rs
12-
// ignore-stage1
1312

1413
#![feature(proc_macro)]
1514
#![allow(unused)]

src/test/run-pass-fulldeps/proc-macro/issue-42708.rs

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

1111
// aux-build:issue-42708.rs
12-
// ignore-stage1
1312

1413
#![feature(decl_macro, proc_macro)]
1514
#![allow(unused)]

src/test/run-pass-fulldeps/proc-macro/load-two.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:derive-atob.rs
1212
// aux-build:derive-ctod.rs
13-
// ignore-stage1
1413

1514
#[macro_use]
1615
extern crate derive_atob;

src/test/run-pass-fulldeps/proc-macro/smoke.rs

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

1111
// aux-build:derive-a.rs
12-
// ignore-stage1
1312

1413
#[macro_use]
1514
extern crate derive_a;

src/test/run-pass-fulldeps/proc-macro/struct-field-macro.rs

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

1111
// aux-build:derive-nothing.rs
12-
// ignore-stage1
1312

1413
#[macro_use]
1514
extern crate derive_nothing;

src/test/run-pass-fulldeps/proc-macro/use-reexport.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:derive-a.rs
1212
// aux-build:derive-reexport.rs
13-
// ignore-stage1
1413

1514
#[macro_use]
1615
extern crate derive_reexport;

src/test/run-pass-fulldeps/proc_macro.rs

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

1111
// aux-build:proc_macro_def.rs
12-
// ignore-stage1
1312
// ignore-cross-compile
1413

1514
#![feature(proc_macro)]

src/test/ui-fulldeps/custom-derive/issue-36935.rs

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

1111
// aux-build:plugin.rs
12-
// ignore-stage1
12+
1313

1414
#![feature(proc_macro)]
1515

src/test/ui-fulldeps/proc-macro/parent-source-spans.rs

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

1111
// aux-build:parent-source-spans.rs
12-
// ignore-stage1
12+
1313

1414
#![feature(proc_macro, decl_macro)]
1515

src/test/ui-fulldeps/proc-macro/three-equals.rs

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

1111
// aux-build:three-equals.rs
12-
// ignore-stage1
12+
1313

1414
#![feature(proc_macro)]
1515

0 commit comments

Comments
 (0)