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

NAKAMURA Takumi geek4civic at gmail.com
Mon Oct 6 16:29:06 PDT 2014


Author: chapuni
Date: Mon Oct  6 18:29:06 2014
New Revision: 219171

URL: http://llvm.org/viewvc/llvm-project?rev=219171&view=rev
Log:
llvm/test/lit.cfg: Suppress dwarf stuff for targeting x86_64-mingw32 while investigating since r219108.

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=219171&r1=219170&r2=219171&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Mon Oct  6 18:29:06 2014
@@ -274,7 +274,8 @@ else:
     config.available_features.add("not_ubsan")
 
 # Direct object generation
-if not 'hexagon' in config.target_triple:
+# Suppress x86_64-mingw32 while investigating since r219108.
+if not 'hexagon' in config.target_triple and not re.match(r'^x86_64.*-(mingw32|win32)', config.target_triple):
     config.available_features.add("object-emission")
 
 if config.have_zlib == "1":





More information about the llvm-commits mailing list