Apply 'make format'
This commit is contained in:
parent
8895f96e41
commit
7236ffa38a
|
|
@ -2635,8 +2635,7 @@ class VlTest:
|
|||
self.error("Unknown trace file format " + traceFn)
|
||||
|
||||
@staticmethod
|
||||
def _vcd_parse_header(filename: str,
|
||||
root_scope: 'str | None' = None) -> 'tuple[dict, dict]':
|
||||
def _vcd_parse_header(filename: str, root_scope: 'str | None' = None) -> 'tuple[dict, dict]':
|
||||
"""Parse VCD header into hierarchy data and signal-code mapping.
|
||||
|
||||
Returns (hier_data, var_codes) where:
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
|
||||
def run(test):
|
||||
(fmt,) = test.parse_name(r"t_trace_split_struct_([a-z]+)")
|
||||
(fmt, ) = test.parse_name(r"t_trace_split_struct_([a-z]+)")
|
||||
|
||||
test.top_filename = "t/t_trace_split_struct.v"
|
||||
test.golden_filename = test.py_filename.rpartition(fmt)[0] + fmt + ".out"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
|
||||
def run(test):
|
||||
(fmt,) = test.parse_name(r"t_trace_struct_alias_([a-z]+)")
|
||||
(fmt, ) = test.parse_name(r"t_trace_struct_alias_([a-z]+)")
|
||||
|
||||
test.top_filename = "t/t_trace_struct_alias.v"
|
||||
test.golden_filename = test.py_filename.rpartition(fmt)[0] + fmt + ".out"
|
||||
|
|
|
|||
Loading…
Reference in New Issue