From 116d1354b6dd9a28db0bfee65345ac0befe92648 Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Fri, 27 Jun 2014 23:29:18 +0000 Subject: [PATCH] [RuntimeDyld] Make sure that RuntimeDyld regression tests only run for targets that have been enabled. Without this, testers will fail when llvm-rtdyld is invoked with triples for unsupported targets. llvm-svn: 211969 --- .../RuntimeDyld/{ => X86}/MachO_x86-64_PIC_relocations.s | 0 llvm/test/ExecutionEngine/RuntimeDyld/X86/lit.local.cfg | 3 +++ 2 files changed, 3 insertions(+) rename llvm/test/ExecutionEngine/RuntimeDyld/{ => X86}/MachO_x86-64_PIC_relocations.s (100%) create mode 100644 llvm/test/ExecutionEngine/RuntimeDyld/X86/lit.local.cfg diff --git a/llvm/test/ExecutionEngine/RuntimeDyld/MachO_x86-64_PIC_relocations.s b/llvm/test/ExecutionEngine/RuntimeDyld/X86/MachO_x86-64_PIC_relocations.s similarity index 100% rename from llvm/test/ExecutionEngine/RuntimeDyld/MachO_x86-64_PIC_relocations.s rename to llvm/test/ExecutionEngine/RuntimeDyld/X86/MachO_x86-64_PIC_relocations.s diff --git a/llvm/test/ExecutionEngine/RuntimeDyld/X86/lit.local.cfg b/llvm/test/ExecutionEngine/RuntimeDyld/X86/lit.local.cfg new file mode 100644 index 0000000..e71f3cc --- /dev/null +++ b/llvm/test/ExecutionEngine/RuntimeDyld/X86/lit.local.cfg @@ -0,0 +1,3 @@ +if not 'X86' in config.root.targets: + config.unsupported = True + -- 2.7.4