Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor cleanups in get_fcov.py #2074

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions dv/uvm/core_ibex/scripts/get_fcov.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@
import sys
import argparse
import pathlib3x as pathlib
import shutil

from metadata import RegressionMetadata, LockedMetadata
from metadata import LockedMetadata
from scripts_lib import run_one
import riscvdv_interface

Expand All @@ -28,7 +27,9 @@ def _main():
md.riscvdv_fcov_cmds = [riscvdv_interface.get_cov_cmd(md)]
md.riscvdv_fcov_stdout = md.dir_fcov/'riscvdv_fcov_stdout.log'

retcode = run_one(md.verbose, md.riscvdv_fcov_cmds[0], md.riscvdv_fcov_stdout)
retcode = run_one(md.verbose,
md.riscvdv_fcov_cmds[0],
md.riscvdv_fcov_stdout)

return retcode

Expand Down
Loading