Skip to content

Commit 70e2138

Browse files
committed
Fix incorrect JIT flag in runner invocation
1 parent 70cdca6 commit 70e2138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run_all_and_update_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def main() -> None:
157157
f"--libjs-test262-runner {libjs_test262_runner} "
158158
f"--test262 {test262} "
159159
"--silent --summary --json "
160-
+ ("" if args.jit else "--jit ")
160+
+ ("--jit " if args.jit else "")
161161
+ (
162162
""
163163
if args.per_file_output is None

0 commit comments

Comments
 (0)