[cfe-commits] r89937 - /cfe/trunk/utils/C++Tests/lit.cfg
Daniel Dunbar
daniel at zuster.org
Wed Nov 25 21:09:01 PST 2009
Author: ddunbar
Date: Wed Nov 25 23:09:00 2009
New Revision: 89937
URL: http://llvm.org/viewvc/llvm-project?rev=89937&view=rev
Log:
Don't run the LLVM Code tests by default.
Modified:
cfe/trunk/utils/C++Tests/lit.cfg
Modified: cfe/trunk/utils/C++Tests/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/C%2B%2BTests/lit.cfg?rev=89937&r1=89936&r2=89937&view=diff
==============================================================================
--- cfe/trunk/utils/C++Tests/lit.cfg (original)
+++ cfe/trunk/utils/C++Tests/lit.cfg Wed Nov 25 23:09:00 2009
@@ -17,14 +17,10 @@
# 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')
More information about the cfe-commits
mailing list