From: Saleem Abdulrasool Date: Sun, 8 Jun 2014 01:04:05 +0000 (+0000) Subject: test: move some tests into ARM directory X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e231836fe4732635c7875d20ffe10f1018946f2f;p=llvm test: move some tests into ARM directory Rather than requiring ARM support for the ELF tests (which is odd), move the tests that require ARM into a subdirectory to use lit to disable them if the support is not present. Play this game to prevent disabling the ELF tests on the Windows build bots as they have caught issues in the past with interactions between various platforms. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210408 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/MC/ELF/gnu-type-hash-diagnostics.s b/test/MC/ELF/ARM/gnu-type-hash-diagnostics.s similarity index 100% rename from test/MC/ELF/gnu-type-hash-diagnostics.s rename to test/MC/ELF/ARM/gnu-type-hash-diagnostics.s diff --git a/test/MC/ELF/gnu-type-hash.s b/test/MC/ELF/ARM/gnu-type-hash.s similarity index 100% rename from test/MC/ELF/gnu-type-hash.s rename to test/MC/ELF/ARM/gnu-type-hash.s diff --git a/test/MC/ELF/ARM/lit.local.cfg b/test/MC/ELF/ARM/lit.local.cfg new file mode 100644 index 00000000000..ba8a4fbfc20 --- /dev/null +++ b/test/MC/ELF/ARM/lit.local.cfg @@ -0,0 +1,4 @@ +targets = set(config.root.targets_to_build.split()) +if not 'ARM' in targets: + config.unsupported = True +