Skip to content

Commit

Permalink
Fix incorrect JIT flag in runner invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
alimpfard committed Nov 5, 2023
1 parent 70cdca6 commit 70e2138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_all_and_update_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def main() -> None:
f"--libjs-test262-runner {libjs_test262_runner} "
f"--test262 {test262} "
"--silent --summary --json "
+ ("" if args.jit else "--jit ")
+ ("--jit " if args.jit else "")
+ (
""
if args.per_file_output is None
Expand Down

0 comments on commit 70e2138

Please sign in to comment.