Skip to content

Commit

Permalink
[dv] Fix paths in merge_cov.py
Browse files Browse the repository at this point in the history
  • Loading branch information
superpung authored Dec 27, 2023
1 parent 38da151 commit 04ec9f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dv/uvm/core_ibex/scripts/merge_cov.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ def merge_cov_vcs(md: RegressionMetadata, cov_dirs: Set[pathlib.Path]) -> int:
logging.info("Generating merged coverage directory")
cmd = (['urg', '-full64',
'-format', 'both',
'-dbname', str(md.cov_dir/'merged.vdb'),
'-report', str(md.cov_dir/'report'),
'-log', str(md.cov_dir/'merge.log'),
'-dbname', str(md.dir_cov/'merged.vdb'),
'-report', str(md.dir_cov/'report'),
'-log', str(md.dir_cov/'merge.log'),
'-dir'] +
list(cov_dirs))
[str(cov_dir) for cov_dir in list(cov_dirs)])
return run_one(md.verbose, cmd, redirect_stdstreams='/dev/null')


Expand Down

0 comments on commit 04ec9f3

Please sign in to comment.