STT: Add encoding option to read trace files

Bug: 284915566
Test: read_build_trace_gz.py build.trace.gz
Change-Id: I90dc3e7c70cecf63ab1a29d972bf8333423436e7
This commit is contained in:
Justin Yun
2023-06-16 15:52:42 +09:00
parent a5b9424827
commit a21f7f598d

View File

@@ -35,7 +35,7 @@ class Trace:
self.target = os.path.splitext(os.path.basename(trace_file))[0]
if not os.path.isfile(trace_file):
return
self._trace_file = gzip.open(trace_file, 'r')
self._trace_file = gzip.open(trace_file, 'rt', encoding='utf-8')
self._trace_data = json.load(self._trace_file)
for t in self._trace_data:
if 'ph' not in t: