diff options
| author | Yaron Keren <yaron.keren@gmail.com> | 2015-04-24 17:14:16 +0000 |
|---|---|---|
| committer | Yaron Keren <yaron.keren@gmail.com> | 2015-04-24 17:14:16 +0000 |
| commit | de2e2b02149f1df91022031d26e5c510480a6f43 (patch) | |
| tree | 12a6aa3a2ffbfb4d2feddb212fa520fe43bb1ac1 | |
| parent | 3eddcaec95b0dcda054f6a3e0375992926e33a2b (diff) | |
| download | bcm5719-llvm-de2e2b02149f1df91022031d26e5c510480a6f43.tar.gz bcm5719-llvm-de2e2b02149f1df91022031d26e5c510480a6f43.zip | |
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.
llvm-svn: 235733
| -rw-r--r-- | llvm/test/CodeGen/AArch64/lit.local.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/AArch64/lit.local.cfg b/llvm/test/CodeGen/AArch64/lit.local.cfg index 125995cebf1..f4626c7e0a4 100644 --- a/llvm/test/CodeGen/AArch64/lit.local.cfg +++ b/llvm/test/CodeGen/AArch64/lit.local.cfg @@ -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 |

