Skip to content

Commit b854d74

Browse files
committed
Auto merge of #39250 - cseale:issue_30924, r=est31
[Gate Tests] - marking feature tests Removal of the lang feature gate tests whitelist #39059 r? @est31
2 parents 8e9e055 + 94e9086 commit b854d74

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

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

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

1313
// aux-build:macro_reexport_1.rs
14+
// gate-test-macro_reexport
1415

1516
#![crate_type = "dylib"]
1617

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

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
// FIXME the error message that is current emitted seems pretty bad.
1717

18+
// gate-test-quote
19+
1820
#![feature(rustc_private)]
1921
#![allow(dead_code, unused_imports, unused_variables)]
2022

src/tools/tidy/src/features.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,7 @@ pub fn check(path: &Path, bad: &mut bool) {
166166

167167
// FIXME get this whitelist empty.
168168
let whitelist = vec![
169-
"abi_ptx", "simd", "macro_reexport",
170-
"static_recursion", "quote",
169+
"abi_ptx", "simd", "static_recursion",
171170
"cfg_target_has_atomic", "staged_api", "const_indexing",
172171
"unboxed_closures", "stmt_expr_attributes",
173172
"cfg_target_thread_local", "unwind_attributes",

0 commit comments

Comments
 (0)