[llvm] c26ec7e - [llvm][lit] fix writing results to --time-trace-output file (#130845)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 06:51:17 PDT 2025
Author: Ebuka Ezike
Date: 2025-03-13T13:51:13Z
New Revision: c26ec7ea2add1e9ca78d7a2c03350447671bfc1b
URL: https://github.com/llvm/llvm-project/commit/c26ec7ea2add1e9ca78d7a2c03350447671bfc1b
DIFF: https://github.com/llvm/llvm-project/commit/c26ec7ea2add1e9ca78d7a2c03350447671bfc1b.diff
LOG: [llvm][lit] fix writing results to --time-trace-output file (#130845)
This patch fixes an issue introduced with commit:
https://github.com/llvm/llvm-project/commit/8507dbaec3f644b8a0c6291f097800d82a4f4b16
Added:
Modified:
llvm/utils/lit/lit/reports.py
Removed:
################################################################################
diff --git a/llvm/utils/lit/lit/reports.py b/llvm/utils/lit/lit/reports.py
index 8312dcddc769a..1b43ab9357b37 100755
--- a/llvm/utils/lit/lit/reports.py
+++ b/llvm/utils/lit/lit/reports.py
@@ -286,7 +286,7 @@ 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)
+ json.dump(json_data, file, indent=2, sort_keys=True)
def _get_test_event(self, test, first_start_time):
test_name = test.getFullName()
More information about the llvm-commits
mailing list