[lld] r305295 - [lld] Add .s to the test suffix list for all lld ports

Reid Kleckner via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 13 08:39:49 PDT 2017


Author: rnk
Date: Tue Jun 13 10:39:49 2017
New Revision: 305295

URL: http://llvm.org/viewvc/llvm-project?rev=305295&view=rev
Log:
[lld] Add .s to the test suffix list for all lld ports

We have two .s test files in lld/test/COFF that weren't being run as
part of check-lld. They both pass locally for me.

Modified:
    lld/trunk/test/lit.cfg

Modified: lld/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/lit.cfg?rev=305295&r1=305294&r2=305295&view=diff
==============================================================================
--- lld/trunk/test/lit.cfg (original)
+++ lld/trunk/test/lit.cfg Tue Jun 13 10:39:49 2017
@@ -45,7 +45,7 @@ else:
 config.test_format = lit.formats.ShTest(execute_external)
 
 # suffixes: A list of file extensions to treat as test files.
-config.suffixes = ['.ll', '.objtxt', '.test']
+config.suffixes = ['.ll', '.s', '.objtxt', '.test']
 
 # excludes: A list of directories to exclude from the testsuite. The 'Inputs'
 # subdirectories contain auxiliary inputs for various tests in their parent




More information about the llvm-commits mailing list