[Test] Trim unnecessary .c and .cpp from config.suffix in lit.local.cfg
authorAdam Nemet <anemet@apple.com>
Mon, 12 May 2014 19:57:31 +0000 (19:57 +0000)
committerAdam Nemet <anemet@apple.com>
Mon, 12 May 2014 19:57:31 +0000 (19:57 +0000)
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

test/Analysis/Delinearization/lit.local.cfg
test/CodeGen/ARM64/lit.local.cfg
test/CodeGen/X86/lit.local.cfg
test/MC/ARM64/lit.local.cfg
test/Transforms/LoopVectorize/AArch64/lit.local.cfg
test/Transforms/LoopVectorize/ARM64/lit.local.cfg
test/tools/llvm-cov/lit.local.cfg

index 19eebc0ac7ac345747856190cdcccb57bf60eec6..c6106e4746f2d7da0600337ec7c03385d2460096 100644 (file)
@@ -1 +1 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll']
index 48af100698b6eebf14fd887f10c3f535a783ea21..3468e27f07f5673ef6db597879f7e71829c16784 100644 (file)
@@ -1,6 +1,6 @@
 import re
 
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll']
 
 targets = set(config.root.targets_to_build.split())
 if not 'ARM64' in targets:
index 1637fa46536ac3f2f95df39a4971c6426ebb26c8..3d91b03d609dbfa5afede19ff5ed5553d418c149 100644 (file)
@@ -4,7 +4,7 @@
 #
 # It should be possible to remove this override once all the bots have cycled
 # cleanly.
-config.suffixes = ['.ll', '.c', '.cpp', '.test', '.txt']
+config.suffixes = ['.ll', '.test', '.txt']
 
 targets = set(config.root.targets_to_build.split())
 if not 'X86' in targets:
index 49447af3692b3d31f5e7a6548b11cc993a0ba5c2..4d6d8826b53139e37588bcb5847661acf9e21d15 100644 (file)
@@ -1,4 +1,4 @@
-config.suffixes = ['.ll', '.c', '.cpp', '.s']
+config.suffixes = ['.ll', '.s']
 
 targets = set(config.root.targets_to_build.split())
 if not 'ARM64' in targets:
index c5ce2411ed48c6d655b1ee4021089a67a1c7552c..a24a72819c35ff99bc457e5cb57625fa50c4ba42 100644 (file)
@@ -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:
index de86e5485262fe311fd04e19e019d4e9ec969db9..f1d1f88cf3994c935ba608e26793110592eae9ab 100644 (file)
@@ -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:
index dc1f66537969e27da16f3f968ef184ba1967e1ca..56c6f1f5fac27f6fd68451a4c89a02fc24ed3e22 100644 (file)
@@ -1 +1 @@
-config.suffixes = ['.test', '.m', '.c', '.cpp']
+config.suffixes = ['.test', '.m', '.cpp']