[llvm] r256112 - Revert r219171, "llvm/test/lit.cfg: Suppress dwarf stuff for targeting x86_64-mingw32 while investigating since r219108."

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 19 19:48:24 PST 2015


Author: chapuni
Date: Sat Dec 19 21:48:23 2015
New Revision: 256112

URL: http://llvm.org/viewvc/llvm-project?rev=256112&view=rev
Log:
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.

Modified:
    llvm/trunk/test/lit.cfg

Modified: llvm/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.cfg?rev=256112&r1=256111&r2=256112&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Sat Dec 19 21:48:23 2015
@@ -352,8 +352,7 @@ if lit_config.params.get("run_long_tests
     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":




More information about the llvm-commits mailing list