From 0829525c55d0c72adc0b87659c3358d913de4db1 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 3 Oct 2012 01:42:37 +0000 Subject: [PATCH] test/ExecutionEngine/MCJIT: MCJIT should work also on mingw. FIXME: Also cygwin? llvm-svn: 165081 --- llvm/test/ExecutionEngine/MCJIT/lit.local.cfg | 2 +- llvm/test/lit.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg index 985496f..420d955 100644 --- a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg +++ b/llvm/test/ExecutionEngine/MCJIT/lit.local.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', 'MingW', 'Darwin']: +if root.host_os in ['Cygwin', 'Darwin']: config.unsupported = True diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index 348ac8f..d815633 100644 --- a/llvm/test/lit.cfg +++ b/llvm/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 'win32' in mcjit_triple.lower(): +if re.search(r'mingw32|win32', mcjit_triple): mcjit_triple += "-elf" config.substitutions.append( ('%mcjit_triple', mcjit_triple) ) -- 2.7.4