diff options
Diffstat (limited to 'test/Bindings')
-rw-r--r-- | test/Bindings/llvm-c/lit.local.cfg | 4 |
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 270a7f2..d83ebee 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 |