[llvm-commits] [llvm] r165313 - in /llvm/trunk/test: ExecutionEngine/MCJIT/lit.local.cfg lit.cfg
NAKAMURA Takumi
geek4civic at gmail.com
Fri Oct 5 07:10:29 PDT 2012
Author: chapuni
Date: Fri Oct 5 09:10:29 2012
New Revision: 165313
URL: http://llvm.org/viewvc/llvm-project?rev=165313&view=rev
Log:
Enable llvm/test/ExecutionEngine/MCJIT also for cygwin.
Modified:
llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg
llvm/trunk/test/lit.cfg
Modified: llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg?rev=165313&r1=165312&r2=165313&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg Fri Oct 5 09:10:29 2012
@@ -16,5 +16,5 @@
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
Modified: llvm/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.cfg?rev=165313&r1=165312&r2=165313&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Fri Oct 5 09:10:29 2012
@@ -142,7 +142,7 @@
# 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) )
More information about the llvm-commits
mailing list