[llvm] r249937 - Suppress LLVM::tools/llvm-symbolizer/coff-dwarf.test for mingw, for now.

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 9 19:57:02 PDT 2015


Author: chapuni
Date: Fri Oct  9 21:57:02 2015
New Revision: 249937

URL: http://llvm.org/viewvc/llvm-project?rev=249937&view=rev
Log:
Suppress LLVM::tools/llvm-symbolizer/coff-dwarf.test for mingw, for now.

FIXME: Improve llvm-symbolizer, or rename the feature "system-windows".

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=249937&r1=249936&r2=249937&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Fri Oct  9 21:57:02 2015
@@ -443,7 +443,7 @@ if 'darwin' == sys.platform:
         config.available_features.add('fma3')
     sysctl_cmd.wait()
 
-if platform.system() in ['Windows']:
+if platform.system() in ['Windows'] and re.match(r'.*-win32$', config.target_triple):
     # For tests that require Windows to run.
     config.available_features.add('system-windows')
 




More information about the llvm-commits mailing list