From 8f9f959b99e12ac675a8a45db62e5bd872a8d1dc Mon Sep 17 00:00:00 2001 From: David Spickett Date: Wed, 29 Sep 2021 10:52:27 +0100 Subject: [PATCH] [AMDGPU] Require AMDGPU target for ASAN instrumentation tests Should fix test failure on Arm/AArch64 quick bots which only build those targets. https://lab.llvm.org/buildbot/#/builders/171/builds/4077 --- llvm/test/Instrumentation/AddressSanitizer/AMDGPU/lit.local.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 llvm/test/Instrumentation/AddressSanitizer/AMDGPU/lit.local.cfg diff --git a/llvm/test/Instrumentation/AddressSanitizer/AMDGPU/lit.local.cfg b/llvm/test/Instrumentation/AddressSanitizer/AMDGPU/lit.local.cfg new file mode 100644 index 0000000000000..2a665f06be72e --- /dev/null +++ b/llvm/test/Instrumentation/AddressSanitizer/AMDGPU/lit.local.cfg @@ -0,0 +1,2 @@ +if not 'AMDGPU' in config.root.targets: + config.unsupported = True