From 01e490b9cf7fd6fac4c6c7275471f930407ca01a Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sun, 20 Dec 2015 03:48:23 +0000 Subject: [PATCH] Revert r219171, "llvm/test/lit.cfg: Suppress dwarf stuff for targeting x86_64-mingw32 while investigating since r219108." It has been fixed since r219280 by David Majnemer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256112 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/lit.cfg | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/lit.cfg b/test/lit.cfg index b77f892d4d9..9fb9fb2b4de 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -352,8 +352,7 @@ if lit_config.params.get("run_long_tests", None) == "true": config.available_features.add("long_tests") # Direct object generation -# Suppress x86_64-mingw32 while investigating since r219108. -if not 'hexagon' in config.target_triple and not re.match(r'^x86_64.*-(mingw32|windows-gnu|win32)', config.target_triple): +if not 'hexagon' in config.target_triple: config.available_features.add("object-emission") if config.have_zlib == "1": -- 2.34.1