Skip to content

Commit b1bd3a3

Browse files
committed
Auto merge of #25338 - tamird:unignore-stage-tests, r=alexcrichton
We don't have any pending snapshot-requiring changes. Closes #20184. Works toward #3965.
2 parents 0a1a53d + f548a05 commit b1bd3a3

27 files changed

+0
-28
lines changed

src/test/auxiliary/issue-9906.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-
// aux-build:issue-9906.rs
12-
1311
pub use other::FooBar;
1412
pub use other::foo;
1513

src/test/auxiliary/issue_16723_multiple_items_syntax_ext.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-stage1
1211
// force-host
1312

1413
#![feature(plugin_registrar, quote, rustc_private)]

src/test/compile-fail-fulldeps/gated-macro-reexports.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Test that macro reexports item are gated by `macro_reexport` feature gate.
1212

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

1615
#![crate_type = "dylib"]
1716

src/test/compile-fail-fulldeps/gated-plugin.rs

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

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

1413
#![plugin(macro_crate_test)]
1514
//~^ ERROR compiler plugins are experimental and possibly buggy

src/test/compile-fail-fulldeps/macro-crate-doesnt-resolve.rs

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

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

1413
#[macro_use] #[no_link]
1514
extern crate macro_crate_test;

src/test/compile-fail-fulldeps/macro-crate-rlib.rs

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

1111
// aux-build:rlib_crate_test.rs
12-
// ignore-stage1
1312
// ignore-tidy-linelength
1413
// ignore-cross-compile gives a different error message
1514

src/test/compile-fail-fulldeps/macro-crate-unexported-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:macro_crate_test.rs
12-
// ignore-stage1
1312

1413
#[macro_use] #[no_link]
1514
extern crate macro_crate_test;

src/test/compile-fail-fulldeps/plugin-as-extern-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:macro_crate_test.rs
12-
// ignore-stage1
1312
// ignore-cross-compile
1413
//
1514
// macro_crate_test will not compile on a cross-compiled target because

src/test/compile-fail/empty-macro-use.rs

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

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

1413
#[macro_use()]
1514
extern crate two_macros;

src/test/compile-fail/macro-crate-nonterminal-non-root.rs

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

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

1413
mod foo {
1514
#[macro_use]

src/test/compile-fail/macro-no-implicit-reexport.rs

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

1111
// aux-build:macro_reexport_1.rs
1212
// aux-build:macro_non_reexport_2.rs
13-
// ignore-stage1
1413

1514
#[macro_use] #[no_link]
1615
extern crate macro_non_reexport_2;

src/test/compile-fail/macro-reexport-not-locally-visible.rs

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

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

1413
#![feature(macro_reexport)]
1514

src/test/compile-fail/macro-reexport-undef.rs

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

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

1413
#[macro_use(macro_two)]
1514
#[macro_reexport(no_way)] //~ ERROR reexported macro not found

src/test/compile-fail/macro-use-undef.rs

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

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

1413
#[macro_use(macro_two, no_way)] //~ ERROR imported macro not found
1514
extern crate two_macros;

src/test/compile-fail/macro-use-wrong-name.rs

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

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

1413
#[macro_use(macro_one)]
1514
extern crate two_macros;

src/test/compile-fail/missing-macro-use.rs

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

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

1413
extern crate two_macros;
1514

src/test/run-pass-fulldeps/issue-13560.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// aux-build:issue-13560-1.rs
1212
// aux-build:issue-13560-2.rs
1313
// aux-build:issue-13560-3.rs
14-
// ignore-stage1
1514
// ignore-musl
1615

1716
// Regression test for issue #13560, the test itself is all in the dependent

src/test/run-pass/macro-crate-nonterminal-renamed.rs

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

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

1413
#[macro_use]
1514
extern crate macro_crate_nonterminal as new_name;

src/test/run-pass/macro-crate-nonterminal.rs

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

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

1413
#[macro_use]
1514
extern crate macro_crate_nonterminal;

src/test/run-pass/macro-export-inner-module.rs

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

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

1413
#[macro_use] #[no_link]
1514
extern crate macro_export_inner_module;

src/test/run-pass/macro-reexport-no-intermediate-use.rs

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

1111
// aux-build:macro_reexport_1.rs
1212
// aux-build:macro_reexport_2_no_use.rs
13-
// ignore-stage1
1413

1514
#[macro_use] #[no_link]
1615
extern crate macro_reexport_2_no_use;

src/test/run-pass/macro-reexport.rs

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

1111
// aux-build:macro_reexport_1.rs
1212
// aux-build:macro_reexport_2.rs
13-
// ignore-stage1
1413

1514
#[macro_use] #[no_link]
1615
extern crate macro_reexport_2;

src/test/run-pass/macro-use-all-and-none.rs

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

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

1413
#[macro_use]
1514
#[macro_use()]

src/test/run-pass/macro-use-all.rs

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

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

1413
#[macro_use]
1514
extern crate two_macros;

src/test/run-pass/macro-use-both.rs

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

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

1413
#[macro_use(macro_one, macro_two)]
1514
extern crate two_macros;

src/test/run-pass/macro-use-one.rs

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

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

1413
#[macro_use(macro_two)]
1514
extern crate two_macros;

src/test/run-pass/two-macro-use.rs

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

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

1413
#[macro_use(macro_one)]
1514
#[macro_use(macro_two)]

0 commit comments

Comments
 (0)