From b894f96de4f26dd738e3bf706ffe7cf0eda60714 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 5 Oct 2012 14:10:29 +0000 Subject: 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 --- test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/lit.cfg') diff --git a/test/lit.cfg b/test/lit.cfg index d815633..dc37317 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -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) ) -- cgit v1.1