summaryrefslogtreecommitdiff
path: root/test/Bindings
diff options
context:
space:
mode:
Diffstat (limited to 'test/Bindings')
-rw-r--r--test/Bindings/llvm-c/lit.local.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Bindings/llvm-c/lit.local.cfg b/test/Bindings/llvm-c/lit.local.cfg
index 270a7f2365..d83ebeed8e 100644
--- a/test/Bindings/llvm-c/lit.local.cfg
+++ b/test/Bindings/llvm-c/lit.local.cfg
@@ -1,3 +1,5 @@
targets = set(config.root.targets_to_build.split())
-if not (targets & set(["X86", "ARM"])):
+if not "X86" in targets:
+ config.unsupported = True
+if not "ARM" in targets:
config.unsupported = True