Rollup merge of #40031 - cynicaldevil:master, r=est31
Added test for inclusive_range_syntax in compile-fail test suite Fixes #39059 r? @est31 Forgot to leave a comment on the issue, hopefully nobody else is working on this one!
This commit is contained in:
commit
6ffc9e4a33
2 changed files with 5 additions and 3 deletions
|
@ -8,6 +8,8 @@
|
||||||
// option. This file may not be copied, modified, or distributed
|
// option. This file may not be copied, modified, or distributed
|
||||||
// except according to those terms.
|
// except according to those terms.
|
||||||
|
|
||||||
|
// gate-test-inclusive_range_syntax
|
||||||
|
|
||||||
// Make sure that #![feature(inclusive_range_syntax)] is required.
|
// Make sure that #![feature(inclusive_range_syntax)] is required.
|
||||||
|
|
||||||
// #![feature(inclusive_range_syntax, inclusive_range)]
|
// #![feature(inclusive_range_syntax, inclusive_range)]
|
||||||
|
|
|
@ -116,7 +116,8 @@ pub fn check(path: &Path, bad: &mut bool) {
|
||||||
});
|
});
|
||||||
|
|
||||||
super::walk_many(&[&path.join("test/compile-fail"),
|
super::walk_many(&[&path.join("test/compile-fail"),
|
||||||
&path.join("test/compile-fail-fulldeps")],
|
&path.join("test/compile-fail-fulldeps"),
|
||||||
|
&path.join("test/parse-fail"),],
|
||||||
&mut |path| super::filter_dirs(path),
|
&mut |path| super::filter_dirs(path),
|
||||||
&mut |file| {
|
&mut |file| {
|
||||||
let filename = file.file_name().unwrap().to_string_lossy();
|
let filename = file.file_name().unwrap().to_string_lossy();
|
||||||
|
@ -169,8 +170,7 @@ pub fn check(path: &Path, bad: &mut bool) {
|
||||||
"abi_ptx", "simd",
|
"abi_ptx", "simd",
|
||||||
"cfg_target_has_atomic",
|
"cfg_target_has_atomic",
|
||||||
"unboxed_closures", "stmt_expr_attributes",
|
"unboxed_closures", "stmt_expr_attributes",
|
||||||
"cfg_target_thread_local", "unwind_attributes",
|
"cfg_target_thread_local", "unwind_attributes"
|
||||||
"inclusive_range_syntax"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
// Only check the number of lang features.
|
// Only check the number of lang features.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue