[clang-tools-extra] r207353 - Allow clang-tidy tests with any file names.

Alexander Kornienko alexfh at google.com
Sun Apr 27 04:44:22 PDT 2014


Author: alexfh
Date: Sun Apr 27 06:44:21 2014
New Revision: 207353

URL: http://llvm.org/viewvc/llvm-project?rev=207353&view=rev
Log:
Allow clang-tidy tests with any file names.

Modified:
    clang-tools-extra/trunk/test/clang-tidy/check_clang_tidy_output.sh

Modified: clang-tools-extra/trunk/test/clang-tidy/check_clang_tidy_output.sh
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/check_clang_tidy_output.sh?rev=207353&r1=207352&r2=207353&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/check_clang_tidy_output.sh (original)
+++ clang-tools-extra/trunk/test/clang-tidy/check_clang_tidy_output.sh Sun Apr 27 06:44:21 2014
@@ -6,5 +6,5 @@ INPUT_FILE=$1
 CHECK_TO_RUN=$2
 
 clang-tidy --checks=${CHECK_TO_RUN} --disable-checks="" ${INPUT_FILE} \
-    -- --std=c++11 \
+    -- --std=c++11 -x c++ \
   | FileCheck ${INPUT_FILE}





More information about the cfe-commits mailing list