[llvm] r371503 - [ExpandMemCmp] Add lit.local.cfg

Clement Courbet via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 10 03:00:15 PDT 2019


Author: courbet
Date: Tue Sep 10 03:00:15 2019
New Revision: 371503

URL: http://llvm.org/viewvc/llvm-project?rev=371503&view=rev
Log:
[ExpandMemCmp] Add lit.local.cfg

To prevent AArch64 tests from running when the target is not compiled.

Fixes r371502:

/home/buildslave/ps4-buildslave4/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/llvm.src/test/Transforms/ExpandMemCmp/AArch64/memcmp.ll:11:15: error: CHECK-NEXT: expected string not found in input
; CHECK-NEXT: [[TMP0:%.*]] = bitcast i8* [[S1:%.*]] to i64*

Added:
    llvm/trunk/test/Transforms/ExpandMemCmp/AArch64/lit.local.cfg

Added: llvm/trunk/test/Transforms/ExpandMemCmp/AArch64/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/ExpandMemCmp/AArch64/lit.local.cfg?rev=371503&view=auto
==============================================================================
--- llvm/trunk/test/Transforms/ExpandMemCmp/AArch64/lit.local.cfg (added)
+++ llvm/trunk/test/Transforms/ExpandMemCmp/AArch64/lit.local.cfg Tue Sep 10 03:00:15 2019
@@ -0,0 +1,3 @@
+if not 'AArch64' in config.root.targets:
+    config.unsupported = True
+




More information about the llvm-commits mailing list