[llvm] r235733 - Teach AArch64\lit.local.cfg the new triple names windows-gnu and windows-msvc.

Yaron Keren yaron.keren at gmail.com
Fri Apr 24 10:14:16 PDT 2015


Author: yrnkrn
Date: Fri Apr 24 12:14:16 2015
New Revision: 235733

URL: http://llvm.org/viewvc/llvm-project?rev=235733&view=rev
Log:
Teach AArch64\lit.local.cfg the new triple names windows-gnu and windows-msvc.

Tests were failing when built with -DLLVM_DEFAULT_TARGET_TRIPLE=i686-pc-windows-gnu.


Modified:
    llvm/trunk/test/CodeGen/AArch64/lit.local.cfg

Modified: llvm/trunk/test/CodeGen/AArch64/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/lit.local.cfg?rev=235733&r1=235732&r2=235733&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/lit.local.cfg (original)
+++ llvm/trunk/test/CodeGen/AArch64/lit.local.cfg Fri Apr 24 12:14:16 2015
@@ -6,5 +6,5 @@ if not 'AArch64' in config.root.targets:
     config.unsupported = True
 
 # For now we don't test arm64-win32.
-if re.search(r'cygwin|mingw32|win32', config.target_triple):
+if re.search(r'cygwin|mingw32|win32|windows-gnu|windows-msvc', config.target_triple):
     config.unsupported = True





More information about the llvm-commits mailing list