From b7b58ffdf44af8e0f12f64fd1278fc66f46b7bf8 Mon Sep 17 00:00:00 2001 From: Nikhil Shagrithaya Date: Wed, 22 Feb 2017 19:49:21 +0530 Subject: [PATCH] Added test for inclusive_range_syntax in compile-fail test suite --- src/test/parse-fail/range_inclusive_gate.rs | 2 ++ src/tools/tidy/src/features.rs | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/test/parse-fail/range_inclusive_gate.rs b/src/test/parse-fail/range_inclusive_gate.rs index 021b6dd3e260f..30dc6fc5b20a0 100644 --- a/src/test/parse-fail/range_inclusive_gate.rs +++ b/src/test/parse-fail/range_inclusive_gate.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// gate-test-inclusive_range_syntax + // Make sure that #![feature(inclusive_range_syntax)] is required. // #![feature(inclusive_range_syntax, inclusive_range)] diff --git a/src/tools/tidy/src/features.rs b/src/tools/tidy/src/features.rs index 13f272517b1fd..2c81382bc9b08 100644 --- a/src/tools/tidy/src/features.rs +++ b/src/tools/tidy/src/features.rs @@ -116,7 +116,8 @@ pub fn check(path: &Path, bad: &mut bool) { }); 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 |file| { let filename = file.file_name().unwrap().to_string_lossy(); @@ -169,8 +170,7 @@ pub fn check(path: &Path, bad: &mut bool) { "abi_ptx", "simd", "cfg_target_has_atomic", "unboxed_closures", "stmt_expr_attributes", - "cfg_target_thread_local", "unwind_attributes", - "inclusive_range_syntax" + "cfg_target_thread_local", "unwind_attributes" ]; // Only check the number of lang features.