[llvm] [llvm][lit] fix writing results to file (PR #130845)
Ebuka Ezike via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 03:08:28 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)
----------------
da-viper wrote:
Yeah, that's right.
https://github.com/llvm/llvm-project/pull/130845
More information about the llvm-commits
mailing list