diff options
| author | Adam Nemet <anemet@apple.com> | 2014-05-12 19:57:31 +0000 |
|---|---|---|
| committer | Adam Nemet <anemet@apple.com> | 2014-05-12 19:57:31 +0000 |
| commit | 63e4b30f790fe161f5995ee6acebfb64be1702c2 (patch) | |
| tree | c1603164e48a82f4ab1099313aff2c1746776f27 /llvm/test/Transforms | |
| parent | efdcf23736c3d105d6b70597b4004aebb3e27c97 (diff) | |
| download | bcm5719-llvm-63e4b30f790fe161f5995ee6acebfb64be1702c2.tar.gz bcm5719-llvm-63e4b30f790fe161f5995ee6acebfb64be1702c2.zip | |
[Test] Trim unnecessary .c and .cpp from config.suffix in lit.local.cfg
Tested by comparing make check VERBOSE=1 before and after to make sure
no tests are missed. (VERBOSE=1 prints the list of tests.)
Only one test :( remains where .cpp is required:
tools/llvm-cov/range_based_for.cpp:// RUN: llvm-cov range_based_for.cpp | FileCheck %s --check-prefix=STDOUT
The topic was discussed in this thread:
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140428/214905.html
llvm-svn: 208621
Diffstat (limited to 'llvm/test/Transforms')
| -rw-r--r-- | llvm/test/Transforms/LoopVectorize/AArch64/lit.local.cfg | 2 | ||||
| -rw-r--r-- | llvm/test/Transforms/LoopVectorize/ARM64/lit.local.cfg | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/AArch64/lit.local.cfg b/llvm/test/Transforms/LoopVectorize/AArch64/lit.local.cfg index c5ce2411ed4..a24a72819c3 100644 --- a/llvm/test/Transforms/LoopVectorize/AArch64/lit.local.cfg +++ b/llvm/test/Transforms/LoopVectorize/AArch64/lit.local.cfg @@ -1,4 +1,4 @@ -config.suffixes = ['.ll', '.c', '.cpp'] +config.suffixes = ['.ll'] targets = set(config.root.targets_to_build.split()) if not 'AArch64' in targets: diff --git a/llvm/test/Transforms/LoopVectorize/ARM64/lit.local.cfg b/llvm/test/Transforms/LoopVectorize/ARM64/lit.local.cfg index de86e548526..f1d1f88cf39 100644 --- a/llvm/test/Transforms/LoopVectorize/ARM64/lit.local.cfg +++ b/llvm/test/Transforms/LoopVectorize/ARM64/lit.local.cfg @@ -1,4 +1,4 @@ -config.suffixes = ['.ll', '.c', '.cpp'] +config.suffixes = ['.ll'] targets = set(config.root.targets_to_build.split()) if not 'ARM64' in targets: |

