From: John McCall Date: Mon, 8 Mar 2010 20:01:09 +0000 (+0000) Subject: Revert r97727 at ddunbar's request; we want to solve this some other way. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43533c9fa03c0f7dc33103cb8b260966a85e1d84;p=clang Revert r97727 at ddunbar's request; we want to solve this some other way. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97971 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lit.cfg b/test/lit.cfg index 3565edc779..beb8ae03b4 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -97,18 +97,6 @@ if config.test_exec_root is None: ### -import re -site_exp = {} -for line in open(os.path.join(config.llvm_obj_root, 'test', 'site.exp')): - m = re.match('set ([^ ]+) "([^"]*)"', line) - if m: - site_exp[m.group(1)] = m.group(2) - -targets = set(site_exp['TARGETS_TO_BUILD'].split()) -def llvm_supports_target(name): - return name in targets -config.conditions['TARGET'] = llvm_supports_target - # Discover the 'clang' and 'clangcc' to use. import os