]> granicus.if.org Git - clang/commitdiff
Don't run the LLVM Code tests by default.
authorDaniel Dunbar <daniel@zuster.org>
Thu, 26 Nov 2009 05:09:00 +0000 (05:09 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Thu, 26 Nov 2009 05:09:00 +0000 (05:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89937 91177308-0d34-0410-b5e6-96231b3b80d8

utils/C++Tests/lit.cfg

index aa3b09d50a4c13b7e16ca528cfcb96cb60a092cb..e61502b62edd9ac875b6635d82b15359b7ab08a8 100644 (file)
@@ -17,14 +17,10 @@ config.suffixes = []
 # Reset these from the Clang config.
 config.test_source_root = config.test_exec_root = None
 
-# Don't run Clang checks by default.
+# Don't run Clang and LLVM code checks by default.
 config.excludes = []
-if (not lit.params.get('run_clang_syntax') and
-    not lit.params.get('run_clang_all')):
-    config.excludes.append('Clang-Syntax')
-if (not lit.params.get('run_clang_code_syntax') and
-    not lit.params.get('run_clang_all')):
+if not lit.params.get('run_clang_all'):
     config.excludes.append('Clang-Code-Syntax')
-if (not lit.params.get('run_clang_compile') and
-    not lit.params.get('run_clang_all')):
     config.excludes.append('Clang-Code-Compile')
+    config.excludes.append('LLVM-Code-Syntax')
+    config.excludes.append('LLVM-Code-Compile')