forked from OSchip/llvm-project
test: Always treat .mir files as tests even outside of CodeGen/MIR
We missed a handful of .mir tests that existed outside the test/CodeGen/MIR directory. Also fix the three powerpc .mir tests that nobody noticed were broken. llvm-svn: 265350
This commit is contained in:
parent
543725c2e3
commit
571e3481e7
|
@ -1,2 +0,0 @@
|
|||
config.suffixes = ['.mir']
|
||||
|
|
@ -45,6 +45,7 @@ name: mm_update_next_owner
|
|||
alignment: 4
|
||||
exposesReturnsTwice: false
|
||||
hasInlineAsm: true
|
||||
allVRegsAllocated: true
|
||||
isSSA: false
|
||||
tracksRegLiveness: true
|
||||
tracksSubRegLiveness: false
|
||||
|
|
|
@ -27,6 +27,7 @@ name: test1
|
|||
alignment: 4
|
||||
exposesReturnsTwice: false
|
||||
hasInlineAsm: false
|
||||
allVRegsAllocated: true
|
||||
isSSA: false
|
||||
tracksRegLiveness: true
|
||||
tracksSubRegLiveness: false
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# RUN: llc -start-after=dead-mi-elimination -stop-after=twoaddressinstruction -o /dev/null %s | FileCheck %s
|
||||
# RUN: llc -start-after=dead-mi-elimination -stop-after=twoaddressinstruction -o /dev/null %s 2>&1 | FileCheck %s
|
||||
|
||||
--- |
|
||||
target datalayout = "E-m:e-i64:64-n32:64"
|
||||
|
|
|
@ -41,7 +41,7 @@ config.test_format = lit.formats.ShTest(execute_external)
|
|||
|
||||
# suffixes: A list of file extensions to treat as test files. This is overriden
|
||||
# by individual lit.local.cfg files in the test subdirectories.
|
||||
config.suffixes = ['.ll', '.c', '.cxx', '.test', '.txt', '.s']
|
||||
config.suffixes = ['.ll', '.c', '.cxx', '.test', '.txt', '.s', '.mir']
|
||||
|
||||
# excludes: A list of directories to exclude from the testsuite. The 'Inputs'
|
||||
# subdirectories contain auxiliary inputs for various tests in their parent
|
||||
|
|
Loading…
Reference in New Issue