summaryrefslogtreecommitdiff
path: root/test/Transforms/LoopVectorize
diff options
context:
space:
mode:
authorAdam Nemet <anemet@apple.com>2014-05-12 19:57:31 +0000
committerAdam Nemet <anemet@apple.com>2014-05-12 19:57:31 +0000
commit45fc47013f9c9530c7db75bfbead24f65365ee0b (patch)
tree9e1cd8f41ae5e737fc736a1a4b5c687273c98a41 /test/Transforms/LoopVectorize
parent9cec62a27fe56f1775e23fdae57300edfdfe2699 (diff)
downloadllvm-45fc47013f9c9530c7db75bfbead24f65365ee0b.tar.gz
llvm-45fc47013f9c9530c7db75bfbead24f65365ee0b.tar.bz2
llvm-45fc47013f9c9530c7db75bfbead24f65365ee0b.tar.xz
[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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208621 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/LoopVectorize')
-rw-r--r--test/Transforms/LoopVectorize/AArch64/lit.local.cfg2
-rw-r--r--test/Transforms/LoopVectorize/ARM64/lit.local.cfg2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/LoopVectorize/AArch64/lit.local.cfg b/test/Transforms/LoopVectorize/AArch64/lit.local.cfg
index c5ce2411ed..a24a72819c 100644
--- a/test/Transforms/LoopVectorize/AArch64/lit.local.cfg
+++ b/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/test/Transforms/LoopVectorize/ARM64/lit.local.cfg b/test/Transforms/LoopVectorize/ARM64/lit.local.cfg
index de86e54852..f1d1f88cf3 100644
--- a/test/Transforms/LoopVectorize/ARM64/lit.local.cfg
+++ b/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: