From 57726810dce71720de5ab81393a6e977902fdaf2 Mon Sep 17 00:00:00 2001 From: Joel Galenson Date: Fri, 13 Jul 2018 16:09:19 +0000 Subject: [PATCH] [cfi-verify] Only run AArch64 tests when it is a supported target This stops the tests I added in r337007 from running when AArch64 is not a supported target. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@337012 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/tools/llvm-cfi-verify/AArch64/lit.local.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/tools/llvm-cfi-verify/AArch64/lit.local.cfg diff --git a/test/tools/llvm-cfi-verify/AArch64/lit.local.cfg b/test/tools/llvm-cfi-verify/AArch64/lit.local.cfg new file mode 100644 index 00000000000..7184443994b --- /dev/null +++ b/test/tools/llvm-cfi-verify/AArch64/lit.local.cfg @@ -0,0 +1,2 @@ +if not 'AArch64' in config.root.targets: + config.unsupported = True -- 2.50.1