1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-04-12 07:37:34 +00:00

Enable llvm/test/ExecutionEngine/MCJIT also for cygwin.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165313 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2012-10-05 14:10:29 +00:00
parent 55587cffec
commit b894f96de4
2 changed files with 2 additions and 2 deletions
test
ExecutionEngine/MCJIT
lit.cfg

@ -16,5 +16,5 @@ else:
if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips']:
config.unsupported = True
if root.host_os in ['Cygwin', 'Darwin']:
if root.host_os in ['Darwin']:
config.unsupported = True

@ -142,7 +142,7 @@ if config.test_exec_root is None:
# Provide a target triple for mcjit tests
mcjit_triple = config.target_triple
# Force ELF format on Windows
if re.search(r'mingw32|win32', mcjit_triple):
if re.search(r'cygwin|mingw32|win32', mcjit_triple):
mcjit_triple += "-elf"
config.substitutions.append( ('%mcjit_triple', mcjit_triple) )