[llvm] r208621 - [Test] Trim unnecessary .c and .cpp from config.suffix in lit.local.cfg

Adam Nemet anemet at apple.com
Mon May 12 12:57:31 PDT 2014


Author: anemet
Date: Mon May 12 14:57:31 2014
New Revision: 208621

URL: http://llvm.org/viewvc/llvm-project?rev=208621&view=rev
Log:
[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

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

Modified: llvm/trunk/test/Analysis/Delinearization/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/Delinearization/lit.local.cfg?rev=208621&r1=208620&r2=208621&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/Delinearization/lit.local.cfg (original)
+++ llvm/trunk/test/Analysis/Delinearization/lit.local.cfg Mon May 12 14:57:31 2014
@@ -1 +1 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll']

Modified: llvm/trunk/test/CodeGen/ARM64/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM64/lit.local.cfg?rev=208621&r1=208620&r2=208621&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM64/lit.local.cfg (original)
+++ llvm/trunk/test/CodeGen/ARM64/lit.local.cfg Mon May 12 14:57:31 2014
@@ -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:

Modified: llvm/trunk/test/CodeGen/X86/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/lit.local.cfg?rev=208621&r1=208620&r2=208621&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/lit.local.cfg (original)
+++ llvm/trunk/test/CodeGen/X86/lit.local.cfg Mon May 12 14:57:31 2014
@@ -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:

Modified: llvm/trunk/test/MC/ARM64/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM64/lit.local.cfg?rev=208621&r1=208620&r2=208621&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM64/lit.local.cfg (original)
+++ llvm/trunk/test/MC/ARM64/lit.local.cfg Mon May 12 14:57:31 2014
@@ -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:

Modified: llvm/trunk/test/Transforms/LoopVectorize/AArch64/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/LoopVectorize/AArch64/lit.local.cfg?rev=208621&r1=208620&r2=208621&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/LoopVectorize/AArch64/lit.local.cfg (original)
+++ llvm/trunk/test/Transforms/LoopVectorize/AArch64/lit.local.cfg Mon May 12 14:57:31 2014
@@ -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:

Modified: llvm/trunk/test/Transforms/LoopVectorize/ARM64/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/LoopVectorize/ARM64/lit.local.cfg?rev=208621&r1=208620&r2=208621&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/LoopVectorize/ARM64/lit.local.cfg (original)
+++ llvm/trunk/test/Transforms/LoopVectorize/ARM64/lit.local.cfg Mon May 12 14:57:31 2014
@@ -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:

Modified: llvm/trunk/test/tools/llvm-cov/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/llvm-cov/lit.local.cfg?rev=208621&r1=208620&r2=208621&view=diff
==============================================================================
--- llvm/trunk/test/tools/llvm-cov/lit.local.cfg (original)
+++ llvm/trunk/test/tools/llvm-cov/lit.local.cfg Mon May 12 14:57:31 2014
@@ -1 +1 @@
-config.suffixes = ['.test', '.m', '.c', '.cpp']
+config.suffixes = ['.test', '.m', '.cpp']





More information about the llvm-commits mailing list