Skip to content

Commit cdc7f63

Browse files
committed
code format
1 parent 0bb32bf commit cdc7f63

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

mlir/test/lit.cfg.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,19 @@ def find_runtime(name):
7070
break
7171
return path
7272

73+
7374
# Find path to the ASan runtime required for the Python interpreter.
7475
def find_asan_runtime():
7576
if not "asan" in config.available_features or not "Linux" in config.host_os:
7677
return ""
7778
# Find the asan rt lib
7879
return (
79-
subprocess.check_output([config.host_cxx.strip(), f"-print-file-name=libclang_rt.asan-{config.host_arch}.so"])
80+
subprocess.check_output(
81+
[
82+
config.host_cxx.strip(),
83+
f"-print-file-name=libclang_rt.asan-{config.host_arch}.so",
84+
]
85+
)
8086
.decode("utf-8")
8187
.strip()
8288
)

0 commit comments

Comments
 (0)