From 939e985f0ae3c58f99c8848e7cdecfd1783d8c75 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 2 Feb 2010 22:00:15 +0000 Subject: MCAssembler/Darwin: Add a test (on Darwin) that we assemble a bunch of instructions exactly like 'as', and produce equivalent .o files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95143 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/lit.cfg | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/lit.cfg') diff --git a/test/lit.cfg b/test/lit.cfg index 8e85168..3b45bf9 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -127,6 +127,9 @@ targets = set(site_exp["TARGETS_TO_BUILD"].split()) def llvm_supports_target(name): return name in targets +def llvm_supports_darwin_and_target(name): + return 'darwin' in config.target_triple and llvm_supports_target(name) + langs = set(site_exp['llvmgcc_langs'].split(',')) def llvm_gcc_supports(name): return name in langs -- cgit v1.1