summaryrefslogtreecommitdiffstats
path: root/llvm/test/MC/Disassembler
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/test/MC/Disassembler')
-rw-r--r--llvm/test/MC/Disassembler/AArch64/lit.local.cfg3
-rw-r--r--llvm/test/MC/Disassembler/ARM/lit.local.cfg3
-rw-r--r--llvm/test/MC/Disassembler/Mips/lit.local.cfg3
-rw-r--r--llvm/test/MC/Disassembler/PowerPC/lit.local.cfg3
-rw-r--r--llvm/test/MC/Disassembler/Sparc/lit.local.cfg3
-rw-r--r--llvm/test/MC/Disassembler/SystemZ/lit.local.cfg3
-rw-r--r--llvm/test/MC/Disassembler/X86/lit.local.cfg3
-rw-r--r--llvm/test/MC/Disassembler/XCore/lit.local.cfg3
8 files changed, 8 insertions, 16 deletions
diff --git a/llvm/test/MC/Disassembler/AArch64/lit.local.cfg b/llvm/test/MC/Disassembler/AArch64/lit.local.cfg
index 2c423d139bb..180bb8a77f1 100644
--- a/llvm/test/MC/Disassembler/AArch64/lit.local.cfg
+++ b/llvm/test/MC/Disassembler/AArch64/lit.local.cfg
@@ -1,4 +1,3 @@
-targets = set(config.root.targets_to_build.split())
-if 'AArch64' not in targets:
+if 'AArch64' not in config.root.targets:
config.unsupported = True
diff --git a/llvm/test/MC/Disassembler/ARM/lit.local.cfg b/llvm/test/MC/Disassembler/ARM/lit.local.cfg
index 8a3ba96497e..98c6700c209 100644
--- a/llvm/test/MC/Disassembler/ARM/lit.local.cfg
+++ b/llvm/test/MC/Disassembler/ARM/lit.local.cfg
@@ -1,4 +1,3 @@
-targets = set(config.root.targets_to_build.split())
-if not 'ARM' in targets:
+if not 'ARM' in config.root.targets:
config.unsupported = True
diff --git a/llvm/test/MC/Disassembler/Mips/lit.local.cfg b/llvm/test/MC/Disassembler/Mips/lit.local.cfg
index 1fa54b428cd..a3183a25afa 100644
--- a/llvm/test/MC/Disassembler/Mips/lit.local.cfg
+++ b/llvm/test/MC/Disassembler/Mips/lit.local.cfg
@@ -1,4 +1,3 @@
-targets = set(config.root.targets_to_build.split())
-if not 'Mips' in targets:
+if not 'Mips' in config.root.targets:
config.unsupported = True
diff --git a/llvm/test/MC/Disassembler/PowerPC/lit.local.cfg b/llvm/test/MC/Disassembler/PowerPC/lit.local.cfg
index 2e463005586..5d33887ff0a 100644
--- a/llvm/test/MC/Disassembler/PowerPC/lit.local.cfg
+++ b/llvm/test/MC/Disassembler/PowerPC/lit.local.cfg
@@ -1,4 +1,3 @@
-targets = set(config.root.targets_to_build.split())
-if not 'PowerPC' in targets:
+if not 'PowerPC' in config.root.targets:
config.unsupported = True
diff --git a/llvm/test/MC/Disassembler/Sparc/lit.local.cfg b/llvm/test/MC/Disassembler/Sparc/lit.local.cfg
index 4d344fa91a9..fa6a54e5013 100644
--- a/llvm/test/MC/Disassembler/Sparc/lit.local.cfg
+++ b/llvm/test/MC/Disassembler/Sparc/lit.local.cfg
@@ -1,4 +1,3 @@
-targets = set(config.root.targets_to_build.split())
-if not 'Sparc' in targets:
+if not 'Sparc' in config.root.targets:
config.unsupported = True
diff --git a/llvm/test/MC/Disassembler/SystemZ/lit.local.cfg b/llvm/test/MC/Disassembler/SystemZ/lit.local.cfg
index b12af09434b..5c02dd3614a 100644
--- a/llvm/test/MC/Disassembler/SystemZ/lit.local.cfg
+++ b/llvm/test/MC/Disassembler/SystemZ/lit.local.cfg
@@ -1,4 +1,3 @@
-targets = set(config.root.targets_to_build.split())
-if not 'SystemZ' in targets:
+if not 'SystemZ' in config.root.targets:
config.unsupported = True
diff --git a/llvm/test/MC/Disassembler/X86/lit.local.cfg b/llvm/test/MC/Disassembler/X86/lit.local.cfg
index ba763cf03ff..e71f3cc4c41 100644
--- a/llvm/test/MC/Disassembler/X86/lit.local.cfg
+++ b/llvm/test/MC/Disassembler/X86/lit.local.cfg
@@ -1,4 +1,3 @@
-targets = set(config.root.targets_to_build.split())
-if not 'X86' in targets:
+if not 'X86' in config.root.targets:
config.unsupported = True
diff --git a/llvm/test/MC/Disassembler/XCore/lit.local.cfg b/llvm/test/MC/Disassembler/XCore/lit.local.cfg
index 4d17d464204..bb48713fe33 100644
--- a/llvm/test/MC/Disassembler/XCore/lit.local.cfg
+++ b/llvm/test/MC/Disassembler/XCore/lit.local.cfg
@@ -1,3 +1,2 @@
-targets = set(config.root.targets_to_build.split())
-if not 'XCore' in targets:
+if not 'XCore' in config.root.targets:
config.unsupported = True
OpenPOWER on IntegriCloud