From: Joel Galenson Date: Fri, 13 Jul 2018 16:09:19 +0000 (+0000) Subject: [cfi-verify] Only run AArch64 tests when it is a supported target X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57726810dce71720de5ab81393a6e977902fdaf2;p=llvm [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 --- 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