Skip to content

Commit 6a272fc

Browse files
committed
more ws fix
1 parent 11896d8 commit 6a272fc

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lldb/packages/Python/lldbsuite/test/configuration.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ def get_yaml2obj_path():
178178
if yaml2obj and os.path.lexists(yaml2obj):
179179
return yaml2obj
180180

181+
181182
def get_yaml2macho_core_path():
182183
"""
183184
Get the path to the yaml2macho-core tool.

lldb/packages/Python/lldbsuite/test/dotest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ def parseOptionsAndInitTestdirs():
280280
configuration.llvm_tools_dir = args.llvm_tools_dir
281281
configuration.filecheck = shutil.which("FileCheck", path=args.llvm_tools_dir)
282282
configuration.yaml2obj = shutil.which("yaml2obj", path=args.llvm_tools_dir)
283-
configuration.yaml2macho_core = shutil.which("yaml2macho-core", path=args.llvm_tools_dir)
283+
configuration.yaml2macho_core = shutil.which(
284+
"yaml2macho-core", path=args.llvm_tools_dir
285+
)
284286

285287
if not configuration.get_filecheck_path():
286288
logging.warning("No valid FileCheck executable; some tests may fail...")

0 commit comments

Comments
 (0)