summaryrefslogtreecommitdiffstats
path: root/clang/utils
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-26 05:09:00 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-26 05:09:00 +0000
commit0ec57ff20359fbaa33276fe641a80e657d3a836c (patch)
tree4d8b7a4dd2f155811266fc167a7aa16616314495 /clang/utils
parent9acb35a5e8c4a6ff770555cc00f30c99b8e218d9 (diff)
downloadbcm5719-llvm-0ec57ff20359fbaa33276fe641a80e657d3a836c.tar.gz
bcm5719-llvm-0ec57ff20359fbaa33276fe641a80e657d3a836c.zip
Don't run the LLVM Code tests by default.
llvm-svn: 89937
Diffstat (limited to 'clang/utils')
-rw-r--r--clang/utils/C++Tests/lit.cfg12
1 files changed, 4 insertions, 8 deletions
diff --git a/clang/utils/C++Tests/lit.cfg b/clang/utils/C++Tests/lit.cfg
index aa3b09d50a4..e61502b62ed 100644
--- a/clang/utils/C++Tests/lit.cfg
+++ b/clang/utils/C++Tests/lit.cfg
@@ -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')
OpenPOWER on IntegriCloud