From fab6b1af6e11efbefa40b849925179a1b7c82650 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Fri, 12 May 2017 17:59:30 +0000 Subject: [PATCH] AMDGPU: Add lit.local.cfg to disable global-isel tests when global-isel is disabled This should fix bots broken by r302919. llvm-svn: 302928 --- llvm/test/CodeGen/AMDGPU/GlobalISel/lit.local.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 llvm/test/CodeGen/AMDGPU/GlobalISel/lit.local.cfg diff --git a/llvm/test/CodeGen/AMDGPU/GlobalISel/lit.local.cfg b/llvm/test/CodeGen/AMDGPU/GlobalISel/lit.local.cfg new file mode 100644 index 0000000..e99d1bb --- /dev/null +++ b/llvm/test/CodeGen/AMDGPU/GlobalISel/lit.local.cfg @@ -0,0 +1,2 @@ +if not 'global-isel' in config.root.available_features: + config.unsupported = True -- 2.7.4