diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-10-06 23:29:06 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-10-06 23:29:06 +0000 |
commit | e6fb7265d7f922e45c2b32395739ffa6837f0c2f (patch) | |
tree | 080cbe993e2821e0d9c25dcaf8120e06409fdae0 /test/lit.cfg | |
parent | 3ba3a4ccfd1c9d03acf0134bd3ec52cfdcac131f (diff) |
llvm/test/lit.cfg: Suppress dwarf stuff for targeting x86_64-mingw32 while investigating since r219108.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219171 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index d3f12d51b85..323d3ce10d3 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -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": |