Enable llvm/test/ExecutionEngine/MCJIT also for cygwin.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 5 Oct 2012 14:10:29 +0000 (14:10 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 5 Oct 2012 14:10:29 +0000 (14:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165313 91177308-0d34-0410-b5e6-96231b3b80d8

test/ExecutionEngine/MCJIT/lit.local.cfg
test/lit.cfg

index 420d9551bda5915f48311d40a4ec0e780953b20f..af3d13f746749ada6675c3254cfeb1b892900868 100644 (file)
@@ -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
index d81563373d07a9b9f7cc9f4b0f076947f8f73501..dc37317ba95ae6234f017f31b2cbb41801aa13a8 100644 (file)
@@ -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) )