diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-10-10 02:57:02 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-10-10 02:57:02 +0000 |
commit | 2b0e1730a0a967efb64d24fc9995c48fbf700c15 (patch) | |
tree | 9ad69665196524b2f03361b8da66627f5974b2a8 /llvm | |
parent | 448dd415889db29daa39e31c877b0ac625c0a02a (diff) | |
download | bcm5719-llvm-2b0e1730a0a967efb64d24fc9995c48fbf700c15.tar.gz bcm5719-llvm-2b0e1730a0a967efb64d24fc9995c48fbf700c15.zip |
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
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index f6f65646438..f4b8df33325 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') |