From 980b5140ffb2e410b9e9981794ed0b52573a716e Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Wed, 20 Mar 2013 17:39:02 +0000 Subject: [PATCH] Make target-specific test case in r177474 only run when that target is built git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177545 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/DebugInfo/ARM/inlined-vars.test | 1 + test/DebugInfo/ARM/lit.local.cfg | 5 +++++ test/DebugInfo/inlined-vars.ll | 1 - 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 test/DebugInfo/ARM/inlined-vars.test create mode 100644 test/DebugInfo/ARM/lit.local.cfg diff --git a/test/DebugInfo/ARM/inlined-vars.test b/test/DebugInfo/ARM/inlined-vars.test new file mode 100644 index 00000000000..487606237b7 --- /dev/null +++ b/test/DebugInfo/ARM/inlined-vars.test @@ -0,0 +1 @@ +RUN: llc -mtriple armv5 -O0 < %S/../inlined-vars.ll | FileCheck %S/../inlined-vars.ll -check-prefix ARGUMENT diff --git a/test/DebugInfo/ARM/lit.local.cfg b/test/DebugInfo/ARM/lit.local.cfg new file mode 100644 index 00000000000..96c61d09ba1 --- /dev/null +++ b/test/DebugInfo/ARM/lit.local.cfg @@ -0,0 +1,5 @@ +config.suffixes = ['.ll', '.s', '.test'] + +targets = set(config.root.targets_to_build.split()) +if not 'ARM' in targets: + config.unsupported = True diff --git a/test/DebugInfo/inlined-vars.ll b/test/DebugInfo/inlined-vars.ll index 2237296f7f8..6f30d8a0302 100644 --- a/test/DebugInfo/inlined-vars.ll +++ b/test/DebugInfo/inlined-vars.ll @@ -1,5 +1,4 @@ ; RUN: llc -O0 < %s | FileCheck %s -check-prefix ARGUMENT -; RUN: llc -mtriple armv5 -O0 < %s | FileCheck %s -check-prefix ARGUMENT ; RUN: llc -O0 < %s | FileCheck %s -check-prefix VARIABLE ; PR 13202