Skip to content

Commit

Permalink
Include file format name in WaveformInfo provider file list field
Browse files Browse the repository at this point in the history
Internal-tag: [#69787]
Signed-off-by: Maciej Kurc <[email protected]>
  • Loading branch information
mkurc-ant committed Dec 16, 2024
1 parent e4e3e70 commit af4b58c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/providers.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
WaveformInfo = provider(
doc = "Waveform collected during a simulation run",
fields = {
"files": "Waveform files",
"vcd_files": "VCD waveform files",
},
)

Expand Down
2 changes: 1 addition & 1 deletion dsim/defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def _dsim_run(ctx):

generated_files.append(trace_file)
result.append(WaveformInfo(
files = [trace_file],
vcd_files = [trace_file],
))

# Coverage file
Expand Down
2 changes: 1 addition & 1 deletion verilator/defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def _verilator_run(ctx):
args.append("+" + ctx.attr.trace_plusarg + "=" + trace_file.path)

result.append(WaveformInfo(
files = [trace_file],
vcd_files = [trace_file],
))

# Target runfiles
Expand Down

0 comments on commit af4b58c

Please sign in to comment.