Auto merge of #25338 - tamird:unignore-stage-tests, r=alexcrichton
We don't have any pending snapshot-requiring changes. Closes #20184. Works toward #3965.
This commit is contained in:
commit
b1bd3a3c51
@ -8,8 +8,6 @@
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:issue-9906.rs
|
||||
|
||||
pub use other::FooBar;
|
||||
pub use other::foo;
|
||||
|
||||
|
@ -8,7 +8,6 @@
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// ignore-stage1
|
||||
// force-host
|
||||
|
||||
#![feature(plugin_registrar, quote, rustc_private)]
|
||||
|
@ -11,7 +11,6 @@
|
||||
// Test that macro reexports item are gated by `macro_reexport` feature gate.
|
||||
|
||||
// aux-build:macro_reexport_1.rs
|
||||
// ignore-stage1
|
||||
|
||||
#![crate_type = "dylib"]
|
||||
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:macro_crate_test.rs
|
||||
// ignore-stage1
|
||||
|
||||
#![plugin(macro_crate_test)]
|
||||
//~^ ERROR compiler plugins are experimental and possibly buggy
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:macro_crate_test.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use] #[no_link]
|
||||
extern crate macro_crate_test;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:rlib_crate_test.rs
|
||||
// ignore-stage1
|
||||
// ignore-tidy-linelength
|
||||
// ignore-cross-compile gives a different error message
|
||||
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:macro_crate_test.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use] #[no_link]
|
||||
extern crate macro_crate_test;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:macro_crate_test.rs
|
||||
// ignore-stage1
|
||||
// ignore-cross-compile
|
||||
//
|
||||
// macro_crate_test will not compile on a cross-compiled target because
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:two_macros.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use()]
|
||||
extern crate two_macros;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:macro_crate_nonterminal.rs
|
||||
// ignore-stage1
|
||||
|
||||
mod foo {
|
||||
#[macro_use]
|
||||
|
@ -10,7 +10,6 @@
|
||||
|
||||
// aux-build:macro_reexport_1.rs
|
||||
// aux-build:macro_non_reexport_2.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use] #[no_link]
|
||||
extern crate macro_non_reexport_2;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:macro_reexport_1.rs
|
||||
// ignore-stage1
|
||||
|
||||
#![feature(macro_reexport)]
|
||||
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:two_macros.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use(macro_two)]
|
||||
#[macro_reexport(no_way)] //~ ERROR reexported macro not found
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:two_macros.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use(macro_two, no_way)] //~ ERROR imported macro not found
|
||||
extern crate two_macros;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:two_macros.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use(macro_one)]
|
||||
extern crate two_macros;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:two_macros.rs
|
||||
// ignore-stage1
|
||||
|
||||
extern crate two_macros;
|
||||
|
||||
|
@ -11,7 +11,6 @@
|
||||
// aux-build:issue-13560-1.rs
|
||||
// aux-build:issue-13560-2.rs
|
||||
// aux-build:issue-13560-3.rs
|
||||
// ignore-stage1
|
||||
// ignore-musl
|
||||
|
||||
// Regression test for issue #13560, the test itself is all in the dependent
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:macro_crate_nonterminal.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use]
|
||||
extern crate macro_crate_nonterminal as new_name;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:macro_crate_nonterminal.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use]
|
||||
extern crate macro_crate_nonterminal;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
//aux-build:macro_export_inner_module.rs
|
||||
//ignore-stage1
|
||||
|
||||
#[macro_use] #[no_link]
|
||||
extern crate macro_export_inner_module;
|
||||
|
@ -10,7 +10,6 @@
|
||||
|
||||
// aux-build:macro_reexport_1.rs
|
||||
// aux-build:macro_reexport_2_no_use.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use] #[no_link]
|
||||
extern crate macro_reexport_2_no_use;
|
||||
|
@ -10,7 +10,6 @@
|
||||
|
||||
// aux-build:macro_reexport_1.rs
|
||||
// aux-build:macro_reexport_2.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use] #[no_link]
|
||||
extern crate macro_reexport_2;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:two_macros.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use]
|
||||
#[macro_use()]
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:two_macros.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use]
|
||||
extern crate two_macros;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:two_macros.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use(macro_one, macro_two)]
|
||||
extern crate two_macros;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:two_macros.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use(macro_two)]
|
||||
extern crate two_macros;
|
||||
|
@ -9,7 +9,6 @@
|
||||
// except according to those terms.
|
||||
|
||||
// aux-build:two_macros.rs
|
||||
// ignore-stage1
|
||||
|
||||
#[macro_use(macro_one)]
|
||||
#[macro_use(macro_two)]
|
||||
|
Loading…
Reference in New Issue
Block a user