Skip to content

Commit

Permalink
[NFC][Py Reformat] Reformat lit.local.cfg python files in llvm
Browse files Browse the repository at this point in the history
This is a follow-up to b71edfa
since I forgot the lit.local.cfg files in that one.

Reformatting is done with `black`.

If you end up having problems merging this commit because you
have made changes to a python file, the best way to handle that
is to run git checkout --ours <yourfile> and then reformat it
with black.

If you run into any problems, post to discourse about it and
we will try to help.

RFC Thread below:

https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style

Reviewed By: barannikov88, kwk

Differential Revision: https://reviews.llvm.org/D150762
  • Loading branch information
tru committed May 17, 2023
1 parent cf8c358 commit f84bac3
Show file tree
Hide file tree
Showing 428 changed files with 681 additions and 627 deletions.
2 changes: 1 addition & 1 deletion llvm/test/Analysis/CostModel/AArch64/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AArch64' in config.root.targets:
if not "AArch64" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Analysis/CostModel/AMDGPU/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AMDGPU' in config.root.targets:
if not "AMDGPU" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Analysis/CostModel/ARM/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'ARM' in config.root.targets:
if not "ARM" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Analysis/CostModel/PowerPC/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'PowerPC' in config.root.targets:
if not "PowerPC" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Analysis/CostModel/RISCV/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'RISCV' in config.root.targets:
if not "RISCV" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Analysis/CostModel/SystemZ/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'SystemZ' in config.root.targets:
if not "SystemZ" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Analysis/CostModel/X86/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'X86' in config.root.targets:
if not "X86" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Analysis/Delinearization/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
config.suffixes = ['.ll']
config.suffixes = [".ll"]
2 changes: 1 addition & 1 deletion llvm/test/Analysis/DotMachineCFG/AMDGPU/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AMDGPU' in config.root.targets:
if not "AMDGPU" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Analysis/Lint/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
config.suffixes = ['.ll']
config.suffixes = [".ll"]
2 changes: 1 addition & 1 deletion llvm/test/Analysis/LoopCacheAnalysis/PowerPC/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'PowerPC' in config.root.targets:
if not "PowerPC" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Analysis/UniformityAnalysis/AMDGPU/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AMDGPU' in config.root.targets:
if not "AMDGPU" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Analysis/UniformityAnalysis/NVPTX/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'NVPTX' in config.root.targets:
if not "NVPTX" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/Bindings/OCaml/Utils/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# This is a directory for utility functions. No test here.
config.suffixes = ['.dummy']
config.suffixes = [".dummy"]
4 changes: 2 additions & 2 deletions llvm/test/Bindings/OCaml/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
config.suffixes = ['.ml']
config.suffixes = [".ml"]

if not 'ocaml' in config.root.llvm_bindings:
if not "ocaml" in config.root.llvm_bindings:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/AArch64/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AArch64' in config.root.targets:
if not "AArch64" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/AMDGPU/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AMDGPU' in config.root.targets:
if not "AMDGPU" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/ARC/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'ARC' in config.root.targets:
if not "ARC" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/ARM/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'ARM' in config.root.targets:
if not "ARM" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/AVR/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AVR' in config.root.targets:
if not "AVR" in config.root.targets:
config.unsupported = True
4 changes: 2 additions & 2 deletions llvm/test/CodeGen/BPF/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if not 'BPF' in config.root.targets:
if not "BPF" in config.root.targets:
config.unsupported = True
if 'system-aix' in config.available_features:
if "system-aix" in config.available_features:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/CSKY/fpu/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'CSKY' in config.root.targets:
if not "CSKY" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/CSKY/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'CSKY' in config.root.targets:
if not "CSKY" in config.root.targets:
config.unsupported = True
4 changes: 2 additions & 2 deletions llvm/test/CodeGen/DirectX/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'DirectX' in config.root.targets:
config.unsupported = True
if not "DirectX" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/Hexagon/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'Hexagon' in config.root.targets:
if not "Hexagon" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/Lanai/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'Lanai' in config.root.targets:
if not "Lanai" in config.root.targets:
config.unsupported = True
17 changes: 10 additions & 7 deletions llvm/test/CodeGen/LoongArch/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import os

config.suffixes = ['.ll', '.mir', '.test', '.txt']
config.suffixes = [".ll", ".mir", ".test", ".txt"]

extract_section_path = os.path.join(config.llvm_src_root,
'utils', 'extract-section.py')
extract_section_path = os.path.join(config.llvm_src_root, "utils", "extract-section.py")

config.substitutions.append(('extract-section',
"'%s' %s %s" % (config.python_executable,
extract_section_path, '--bits-endian little')))
config.substitutions.append(
(
"extract-section",
"'%s' %s %s"
% (config.python_executable, extract_section_path, "--bits-endian little"),
)
)

if not 'LoongArch' in config.root.targets:
if not "LoongArch" in config.root.targets:
config.unsupported = True
22 changes: 14 additions & 8 deletions llvm/test/CodeGen/M68k/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
import os

config.suffixes = ['.ll', '.mir', '.test', '.txt']
config.suffixes = [".ll", ".mir", ".test", ".txt"]

extract_section_path = os.path.join(config.llvm_src_root,
'utils', 'extract-section.py')
extract_section_path = os.path.join(config.llvm_src_root, "utils", "extract-section.py")

config.substitutions.append(('extract-section',
"'%s' %s %s" % (config.python_executable,
extract_section_path, '--byte-indicator --hex-width=2')))
config.substitutions.append(
(
"extract-section",
"'%s' %s %s"
% (
config.python_executable,
extract_section_path,
"--byte-indicator --hex-width=2",
),
)
)

if not 'M68k' in config.root.targets:
if not "M68k" in config.root.targets:
config.unsupported = True

4 changes: 2 additions & 2 deletions llvm/test/CodeGen/MIR/AArch64/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import re

if not 'AArch64' in config.root.targets:
if not "AArch64" in config.root.targets:
config.unsupported = True

# For now we don't test arm64-win32.
if re.search(r'cygwin|mingw32|win32|windows-gnu|windows-msvc', config.target_triple):
if re.search(r"cygwin|mingw32|win32|windows-gnu|windows-msvc", config.target_triple):
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MIR/AMDGPU/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AMDGPU' in config.root.targets:
if not "AMDGPU" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MIR/ARM/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'ARM' in config.root.targets:
if not "ARM" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MIR/Generic/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if 'native' not in config.available_features:
if "native" not in config.available_features:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MIR/Hexagon/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'Hexagon' in config.root.targets:
if not "Hexagon" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MIR/Mips/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'Mips' in config.root.targets:
if not "Mips" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MIR/NVPTX/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'NVPTX' in config.root.targets:
if not "NVPTX" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MIR/PowerPC/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'PowerPC' in config.root.targets:
if not "PowerPC" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MIR/RISCV/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'RISCV' in config.root.targets:
if not "RISCV" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MIR/WebAssembly/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'WebAssembly' in config.root.targets:
if not "WebAssembly" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MIR/X86/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'X86' in config.root.targets:
if not "X86" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/MSP430/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'MSP430' in config.root.targets:
if not "MSP430" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/Mips/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'Mips' in config.root.targets:
if not "Mips" in config.root.targets:
config.unsupported = True
4 changes: 2 additions & 2 deletions llvm/test/CodeGen/NVPTX/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
if not 'NVPTX' in config.root.targets:
if not "NVPTX" in config.root.targets:
config.unsupported = True
config.suffixes.add('.py')
config.suffixes.add(".py")
4 changes: 2 additions & 2 deletions llvm/test/CodeGen/PowerPC/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if not 'PowerPC' in config.root.targets:
if not "PowerPC" in config.root.targets:
config.unsupported = True

config.suffixes.add('.py')
config.suffixes.add(".py")
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/RISCV/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'RISCV' in config.root.targets:
if not "RISCV" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/SPARC/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'Sparc' in config.root.targets:
if not "Sparc" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/SPIRV/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'SPIRV' in config.root.targets:
if not "SPIRV" in config.root.targets:
config.unsupported = True
6 changes: 3 additions & 3 deletions llvm/test/CodeGen/SystemZ/Large/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
config.suffixes = [ '.ll', '.py' ]
config.suffixes = [".ll", ".py"]

# These tests take on the order of seconds to run, so skip them unless
# we're running long tests.
if 'long_tests' not in config.available_features:
if "long_tests" not in config.available_features:
config.unsupported = True

if not 'SystemZ' in config.root.targets:
if not "SystemZ" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/SystemZ/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'SystemZ' in config.root.targets:
if not "SystemZ" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/Thumb/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'ARM' in config.root.targets:
if not "ARM" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/Thumb2/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'ARM' in config.root.targets:
if not "ARM" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/VE/VELIntrinsics/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'VE' in config.root.targets:
if not "VE" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/VE/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'VE' in config.root.targets:
if not "VE" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/WebAssembly/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'WebAssembly' in config.root.targets:
if not "WebAssembly" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/WinCFGuard/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'X86' in config.root.targets:
if not "X86" in config.root.targets:
config.unsupported = True
4 changes: 2 additions & 2 deletions llvm/test/CodeGen/WinEH/lit.local.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#
# It should be possible to remove this override once all the bots have cycled
# cleanly.
config.suffixes = ['.ll', '.test', '.txt']
config.suffixes = [".ll", ".test", ".txt"]

# FIXME: Add Windows on ARM support to these tests.
if not 'X86' in config.root.targets:
if not "X86" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/X86/GC/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'X86' in config.root.targets:
if not "X86" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/X86/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'X86' in config.root.targets:
if not "X86" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/XCore/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'XCore' in config.root.targets:
if not "XCore" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/AArch64/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AArch64' in config.root.targets:
if not "AArch64" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/AMDGPU/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AMDGPU' in config.root.targets:
if not "AMDGPU" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/ARM/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'ARM' in config.root.targets:
if not "ARM" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/BPF/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'BPF' in config.root.targets:
if not "BPF" in config.root.targets:
config.unsupported = True
3 changes: 1 addition & 2 deletions llvm/test/DebugInfo/COFF/AArch64/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
if not 'AArch64' in config.root.targets:
if not "AArch64" in config.root.targets:
config.unsupported = True

3 changes: 1 addition & 2 deletions llvm/test/DebugInfo/COFF/ARMNT/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
if not 'ARM' in config.root.targets:
if not "ARM" in config.root.targets:
config.unsupported = True

2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/COFF/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'X86' in config.root.targets:
if not "X86" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/CSKY/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'CSKY' in config.root.targets:
if not "CSKY" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/Lanai/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'Lanai' in config.root.targets:
if not "Lanai" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/MIR/AArch64/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'AArch64' in config.root.targets:
if not "AArch64" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/MIR/ARM/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'ARM' in config.root.targets:
if not "ARM" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/MIR/Hexagon/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'Hexagon' in config.root.targets:
if not "Hexagon" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/MIR/InstrRef/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'X86' in config.root.targets:
if not "X86" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/MIR/Mips/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'Mips' in config.root.targets:
if not "Mips" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/MIR/SystemZ/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'SystemZ' in config.root.targets:
if not "SystemZ" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/MIR/X86/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'X86' in config.root.targets:
if not "X86" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/MIR/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
config.suffixes = ['.mir']
config.suffixes = [".mir"]
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/MSP430/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'MSP430' in config.root.targets:
if not "MSP430" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/Mips/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'Mips' in config.root.targets:
if not "Mips" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/NVPTX/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'NVPTX' in config.root.targets:
if not "NVPTX" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/PowerPC/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'PowerPC' in config.root.targets:
if not "PowerPC" in config.root.targets:
config.unsupported = True
2 changes: 1 addition & 1 deletion llvm/test/DebugInfo/RISCV/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
if not 'RISCV' in config.root.targets:
if not "RISCV" in config.root.targets:
config.unsupported = True

0 comments on commit f84bac3

Please sign in to comment.