forked from OSchip/llvm-project
Revert r113780, "Recognize .ll as input files. Handle %test_debuginfo on a RUN command line."
This feature has been unused anymore. llvm-svn: 200145
This commit is contained in:
parent
1a309679b8
commit
36ec246114
|
@ -44,7 +44,7 @@ else:
|
|||
config.test_format = lit.formats.ShTest(execute_external)
|
||||
|
||||
# suffixes: A list of file extensions to treat as test files.
|
||||
config.suffixes = ['.c', '.cpp', '.m', '.mm', '.cu', '.ll', '.cl', '.s']
|
||||
config.suffixes = ['.c', '.cpp', '.m', '.mm', '.cu', '.cl', '.s']
|
||||
|
||||
# excludes: A list of directories to exclude from the testsuite. The 'Inputs'
|
||||
# subdirectories contain auxiliary inputs for various tests in their parent
|
||||
|
@ -263,7 +263,6 @@ config.substitutions.append( ('%clang_cl', ' ' + config.clang +
|
|||
config.substitutions.append( ('%clangxx', ' ' + config.clang +
|
||||
' --driver-mode=g++ '))
|
||||
config.substitutions.append( ('%clang', ' ' + config.clang + ' ') )
|
||||
config.substitutions.append( ('%test_debuginfo', ' ' + config.llvm_src_root + '/utils/test_debuginfo.pl ') )
|
||||
config.substitutions.append( ('%itanium_abi_triple', makeItaniumABITriple(config.target_triple)) )
|
||||
config.substitutions.append( ('%ms_abi_triple', makeMSABITriple(config.target_triple)) )
|
||||
|
||||
|
|
Loading…
Reference in New Issue