summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-01-16 00:00:20 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-01-16 00:00:20 +0000
commit89a9c91247d19bed0d202675162ad45bf24699fe (patch)
treee7709d1f1371b61d7cfdc74e96375afd9e8f883b /test
parent8914fc20c233623815de470fc96c3036642e2a14 (diff)
Fix llvm_supports_binding for lit, problem noticed by Bob!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/lit.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 246f2701ce6..8e85168205c 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -133,7 +133,7 @@ def llvm_gcc_supports(name):
bindings = set(site_exp['llvm_bindings'].split(','))
def llvm_supports_binding(name):
- return name in langs
+ return name in bindings
# Provide on_clone hook for reading 'dg.exp'.
import os