From ad157ff59a497ac62ac858f30553ba2cdbe950e3 Mon Sep 17 00:00:00 2001 From: Clement Courbet Date: Tue, 10 Sep 2019 10:00:15 +0000 Subject: [PATCH] [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* git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@371503 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/ExpandMemCmp/AArch64/lit.local.cfg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/Transforms/ExpandMemCmp/AArch64/lit.local.cfg diff --git a/test/Transforms/ExpandMemCmp/AArch64/lit.local.cfg b/test/Transforms/ExpandMemCmp/AArch64/lit.local.cfg new file mode 100644 index 00000000000..cec29af5bbe --- /dev/null +++ b/test/Transforms/ExpandMemCmp/AArch64/lit.local.cfg @@ -0,0 +1,3 @@ +if not 'AArch64' in config.root.targets: + config.unsupported = True + -- 2.50.1