From 2b0e1730a0a967efb64d24fc9995c48fbf700c15 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 10 Oct 2015 02:57:02 +0000 Subject: [PATCH] Suppress LLVM::tools/llvm-symbolizer/coff-dwarf.test for mingw, for now. FIXME: Improve llvm-symbolizer, or rename the feature "system-windows". llvm-svn: 249937 --- llvm/test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index f6f65646438e..f4b8df333254 100644 --- a/llvm/test/lit.cfg +++ b/llvm/test/lit.cfg @@ -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')