From dce4a407a24b04eebc6a376f8e62b41aaa7b071f Mon Sep 17 00:00:00 2001 From: Stephen Hines Date: Thu, 29 May 2014 02:49:00 -0700 Subject: Update LLVM for 3.5 rebase (r209712). Change-Id: I149556c940fb7dc92d075273c87ff584f400941f --- test/ExecutionEngine/RuntimeDyld/arm_secdiff_reloc.test | 1 - test/ExecutionEngine/RuntimeDyld/macho_relocations.test | 1 + test/ExecutionEngine/lit.local.cfg | 7 ++++--- 3 files changed, 5 insertions(+), 4 deletions(-) delete mode 100644 test/ExecutionEngine/RuntimeDyld/arm_secdiff_reloc.test create mode 100644 test/ExecutionEngine/RuntimeDyld/macho_relocations.test (limited to 'test/ExecutionEngine') diff --git a/test/ExecutionEngine/RuntimeDyld/arm_secdiff_reloc.test b/test/ExecutionEngine/RuntimeDyld/arm_secdiff_reloc.test deleted file mode 100644 index 92e4dd7..0000000 --- a/test/ExecutionEngine/RuntimeDyld/arm_secdiff_reloc.test +++ /dev/null @@ -1 +0,0 @@ -RUN: llvm-rtdyld -printline %p/Inputs/arm_secdiff_reloc.o diff --git a/test/ExecutionEngine/RuntimeDyld/macho_relocations.test b/test/ExecutionEngine/RuntimeDyld/macho_relocations.test new file mode 100644 index 0000000..92e4dd7 --- /dev/null +++ b/test/ExecutionEngine/RuntimeDyld/macho_relocations.test @@ -0,0 +1 @@ +RUN: llvm-rtdyld -printline %p/Inputs/arm_secdiff_reloc.o diff --git a/test/ExecutionEngine/lit.local.cfg b/test/ExecutionEngine/lit.local.cfg index a198439..7f0b69e 100644 --- a/test/ExecutionEngine/lit.local.cfg +++ b/test/ExecutionEngine/lit.local.cfg @@ -1,9 +1,10 @@ -if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']: +if config.root.host_arch in ['PowerPC', 'AArch64', 'ARM64', 'SystemZ']: config.unsupported = True # CMake and autoconf diverge in naming or host_arch -if 'aarch64' in config.root.target_triple: - config.unsupported = True +if 'aarch64' in config.root.target_triple \ + or 'arm64' in config.root.target_triple: + config.unsupported = True if 'hexagon' in config.root.target_triple: config.unsupported = True -- cgit v1.1