From baecbb82d8f4478fde181d5b215f98226dabc222 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 19 Apr 2013 12:47:53 +0000 Subject: [PATCH] Only run the tests in test/Object/ARM if we have ARM support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179850 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Object/ARM/lit.local.cfg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/Object/ARM/lit.local.cfg diff --git a/test/Object/ARM/lit.local.cfg b/test/Object/ARM/lit.local.cfg new file mode 100644 index 00000000000..5fc35d80541 --- /dev/null +++ b/test/Object/ARM/lit.local.cfg @@ -0,0 +1,3 @@ +targets = set(config.root.targets_to_build.split()) +if not 'ARM' in targets: + config.unsupported = True -- 2.34.1