Skip to content

Commit c032e81

Browse files
committed
Unignore tests in stage1
We don't have any pending snapshot-requiring changes. Closes rust-lang#20184.
1 parent 2a5a320 commit c032e81

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+0
-55
lines changed

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/issue-15778-fail.rs

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

1111
// aux-build:lint_for_crate.rs
12-
// ignore-stage1
1312
// compile-flags: -D crate-not-okay
1413

1514
#![feature(plugin, custom_attribute)] //~ ERROR crate is not marked with #![crate_okay]

src/test/compile-fail-fulldeps/lint-group-plugin-deny-cmdline.rs

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

1111
// aux-build:lint_group_plugin_test.rs
12-
// ignore-stage1
1312
// compile-flags: -D lint-me
1413

1514
#![feature(plugin)]

src/test/compile-fail-fulldeps/lint-plugin-deny-attr.rs

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

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

1413
#![feature(plugin)]
1514
#![plugin(lint_plugin_test)]

src/test/compile-fail-fulldeps/lint-plugin-deny-cmdline.rs

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

1111
// aux-build:lint_plugin_test.rs
12-
// ignore-stage1
1312
// compile-flags: -D test-lint
1413

1514
#![feature(plugin)]

src/test/compile-fail-fulldeps/lint-plugin-forbid-attrs.rs

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

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

1413
#![feature(plugin)]
1514
#![plugin(lint_plugin_test)]

src/test/compile-fail-fulldeps/lint-plugin-forbid-cmdline.rs

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

1111
// aux-build:lint_plugin_test.rs
12-
// ignore-stage1
1312
// compile-flags: -F test-lint
1413

1514
#![feature(plugin)]

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-MacroRulesTT.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_MacroRulesTT.rs
12-
// ignore-stage1
1312
// error-pattern: plugin tried to register a new MacroRulesTT
1413

1514
#![feature(plugin)]

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-fulldeps/plugin-plus-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/asm-src-loc-codegen-units.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 (#20184)
1211
// compile-flags: -C codegen-units=2
1312
// error-pattern: build without -C codegen-units for more exact errors
1413

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/derive-totalsum-attr.rs

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

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

1413
#![feature(plugin, custom_derive, custom_attribute)]
1514
#![plugin(custom_derive_plugin_attr)]

src/test/run-pass-fulldeps/derive-totalsum.rs

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

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

1413
#![feature(plugin, custom_derive)]
1514
#![plugin(custom_derive_plugin)]

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-fulldeps/issue-15778-pass.rs

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

1111
// aux-build:lint_for_crate.rs
12-
// ignore-stage1
1312
// compile-flags: -D crate-not-okay
1413

1514
#![feature(plugin, custom_attribute)]

src/test/run-pass-fulldeps/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
// aux-build:issue_16723_multiple_items_syntax_ext.rs
1312
#![feature(plugin)]
1413
#![plugin(issue_16723_multiple_items_syntax_ext)]

src/test/run-pass-fulldeps/lint-group-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:lint_group_plugin_test.rs
12-
// ignore-stage1
1312
// ignore-pretty
1413

1514
#![feature(plugin)]

src/test/run-pass-fulldeps/lint-plugin-cmdline-allow.rs

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

1111
// aux-build:lint_plugin_test.rs
12-
// ignore-stage1
1312
// compile-flags: -A test-lint
1413

1514
#![feature(plugin)]

src/test/run-pass-fulldeps/lint-plugin-cmdline-load.rs

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

1111
// aux-build:lint_plugin_test.rs
12-
// ignore-stage1
1312
// ignore-pretty: Random space appears with the pretty test
1413
// compile-flags: -Z extra-plugins=lint_plugin_test
1514

src/test/run-pass-fulldeps/lint-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:lint_plugin_test.rs
12-
// ignore-stage1
1312
// ignore-pretty
1413

1514
#![feature(plugin)]

src/test/run-pass-fulldeps/llvm-pass-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:llvm_pass_plugin.rs
12-
// ignore-stage1
1312

1413
#![feature(plugin)]
1514
#![plugin(llvm_pass_plugin)]

src/test/run-pass-fulldeps/macro-crate-does-hygiene-work.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
// Issue #15750: a macro that internally parses its input and then
1514
// uses `quote_expr!` to rearrange it should be hygiene-preserving.

src/test/run-pass-fulldeps/macro-crate-outlive-expansion-phase.rs

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

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

1413
#![feature(plugin)]
1514
#![plugin(plugin_crate_outlive_expansion_phase)]

src/test/run-pass-fulldeps/macro-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

1413
#![feature(plugin, custom_attribute)]
1514
#![plugin(macro_crate_test)]

src/test/run-pass-fulldeps/mbe_matching_test_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:procedural_mbe_matching.rs
12-
// ignore-stage1
1312

1413
#![feature(plugin)]
1514
#![plugin(procedural_mbe_matching)]

src/test/run-pass-fulldeps/plugin-args-1.rs

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

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

1413
#![feature(plugin)]
1514
#![plugin(plugin_args)]

src/test/run-pass-fulldeps/plugin-args-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:plugin_args.rs
12-
// ignore-stage1
1312

1413
#![feature(plugin)]
1514
#![plugin(plugin_args())]

src/test/run-pass-fulldeps/plugin-args-3.rs

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

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

1413
#![feature(plugin)]
1514
#![plugin(plugin_args(hello(there), how(are="you")))]

src/test/run-pass-fulldeps/plugin-lib-ok-in-plugin.rs

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

1111
// aux-build:macro_crate_test.rs
1212
// aux-build:plugin_with_plugin_lib.rs
13-
// ignore-stage1
1413
// ignore-cross-compile
1514
//
1615
// macro_crate_test will not compile on a cross-compiled target because

src/test/run-pass-fulldeps/plugin-plus-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/run-pass-fulldeps/roman-numerals-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:roman_numerals.rs
12-
// ignore-stage1
1312

1413
#![feature(plugin)]
1514
#![plugin(roman_numerals)]

src/test/run-pass-fulldeps/syntax-extension-with-dll-deps.rs

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

1111
// aux-build:syntax_extension_with_dll_deps_1.rs
1212
// aux-build:syntax_extension_with_dll_deps_2.rs
13-
// ignore-stage1
1413

1514
#![feature(plugin, rustc_private)]
1615
#![plugin(syntax_extension_with_dll_deps_2)]

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;

0 commit comments

Comments
 (0)