[llvm] r205126 - Suppress llvm/test/CodeGen/ARM64 for targeting pecoff. ARM64 is unaware of that.

NAKAMURA Takumi geek4civic at gmail.com
Sat Mar 29 22:01:17 PDT 2014


Author: chapuni
Date: Sun Mar 30 00:01:17 2014
New Revision: 205126

URL: http://llvm.org/viewvc/llvm-project?rev=205126&view=rev
Log:
Suppress llvm/test/CodeGen/ARM64 for targeting pecoff. ARM64 is unaware of that.

FIXME: Could we support them?

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

Modified: llvm/trunk/test/CodeGen/ARM64/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM64/lit.local.cfg?rev=205126&r1=205125&r2=205126&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM64/lit.local.cfg (original)
+++ llvm/trunk/test/CodeGen/ARM64/lit.local.cfg Sun Mar 30 00:01:17 2014
@@ -1,6 +1,11 @@
+import re
+
 config.suffixes = ['.ll', '.c', '.cpp']
 
 targets = set(config.root.targets_to_build.split())
 if not 'ARM64' in targets:
     config.unsupported = True
 
+# For now we don't test arm64-win32.
+if re.search(r'cygwin|mingw32|win32', config.target_triple):
+    config.unsupported = True





More information about the llvm-commits mailing list