Skip to content

Commit f0f67b2

Browse files
committed
Fix format
1 parent 9422da5 commit f0f67b2

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

clang/test/lit.cfg.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -122,16 +122,14 @@ def have_host_out_of_process_jit_feature_support():
122122
if not clang_repl_exe:
123123
return False
124124

125-
testcode = b'\n'.join([
126-
b"int i = 0;",
127-
b"%quit"
128-
])
125+
testcode = b"\n".join([b"int i = 0;", b"%quit"])
129126

130127
try:
131128
clang_repl_cmd = subprocess.run(
132129
[clang_repl_exe, "-orc-runtime", "-oop-executor"],
133-
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
134-
input=testcode
130+
stdout=subprocess.PIPE,
131+
stderr=subprocess.PIPE,
132+
input=testcode,
135133
)
136134
except OSError:
137135
return False
@@ -194,7 +192,7 @@ def have_host_clang_repl_cuda():
194192
config.available_features.add('host-supports-cuda')
195193

196194
if have_host_out_of_process_jit_feature_support():
197-
config.available_features.add('host-supports-out-of-process-jit')
195+
config.available_features.add("host-supports-out-of-process-jit")
198196

199197
if config.clang_staticanalyzer:
200198
config.available_features.add("staticanalyzer")

0 commit comments

Comments
 (0)