From: Yaron Keren Date: Wed, 17 Dec 2014 09:55:15 +0000 (+0000) Subject: Teach lit.cfg to recognize -windows-gnu in addition to -mingw32. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a1c320799579cc42eef78e294997c86e7e4c604;p=clang Teach lit.cfg to recognize -windows-gnu in addition to -mingw32. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@224421 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lit.cfg b/test/lit.cfg index 4567f179f8..70353c6195 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -404,11 +404,11 @@ if not re.match(r'.*-win32$', config.target_triple): config.available_features.add('non-ms-sdk') # [PR8833] LLP64-incompatible tests -if not re.match(r'^x86_64.*-(win32|mingw32)$', config.target_triple): +if not re.match(r'^x86_64.*-(win32|mingw32|windows-gnu)$', config.target_triple): config.available_features.add('LP64') # [PR12920] "clang-driver" -- set if gcc driver is not used. -if not re.match(r'.*-(cygwin|mingw32)$', config.target_triple): +if not re.match(r'.*-(cygwin|mingw32|windows-gnu)$', config.target_triple): config.available_features.add('clang-driver') # [PR18856] Depends to remove opened file. On win32, a file could be removed