[llvm] [llvm][lit] fix writing results to file (PR #130845)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 03:00:04 PDT 2025
================
@@ -286,7 +286,8 @@ def _write_results_to_file(self, tests, elapsed, file):
json_data = {"traceEvents": events}
- json.dump(json_data, time_trace_file, indent=2, sort_keys=True)
+ with open(self.output_file, "w") as time_trace_file:
+ json.dump(json_data, time_trace_file, indent=2, sort_keys=True)
----------------
jh7370 wrote:
Actually, I don't think this is the right change: see my out-of-line comment for more details. I think the correct change is to use `file` not `time_trace_file` here.
https://github.com/llvm/llvm-project/pull/130845
More information about the llvm-commits
mailing list