diff options
author | Lang Hames <lhames@gmail.com> | 2014-06-27 23:29:18 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2014-06-27 23:29:18 +0000 |
commit | 116d1354b6dd9a28db0bfee65345ac0befe92648 (patch) | |
tree | 5853292a68f6f94a396f6dd4f302e8650c17df1f /llvm/test/ExecutionEngine | |
parent | a57596658a57ff03fad94e3dcf260ecb3c99c289 (diff) | |
download | bcm5719-llvm-116d1354b6dd9a28db0bfee65345ac0befe92648.tar.gz bcm5719-llvm-116d1354b6dd9a28db0bfee65345ac0befe92648.zip |
[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
Diffstat (limited to 'llvm/test/ExecutionEngine')
-rw-r--r-- | llvm/test/ExecutionEngine/RuntimeDyld/X86/MachO_x86-64_PIC_relocations.s (renamed from llvm/test/ExecutionEngine/RuntimeDyld/MachO_x86-64_PIC_relocations.s) | 0 | ||||
-rw-r--r-- | llvm/test/ExecutionEngine/RuntimeDyld/X86/lit.local.cfg | 3 |
2 files changed, 3 insertions, 0 deletions
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 index 6c27b62dbff..6c27b62dbff 100644 --- a/llvm/test/ExecutionEngine/RuntimeDyld/MachO_x86-64_PIC_relocations.s +++ b/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 00000000000..e71f3cc4c41 --- /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 + |