Skip to content

Commit

Permalink
bump OSVVM to latest version (VUnit#712)
Browse files Browse the repository at this point in the history
This commits ignores files with VHDL-2019 features to make sure that the rest doesn't break anything.
  • Loading branch information
LarsAsplund authored and eine committed Mar 19, 2021
1 parent 3d41e10 commit f0578b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
14 changes: 4 additions & 10 deletions vunit/builtins.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,16 +173,10 @@ def _add_osvvm(self):

for file_name in glob(str(VHDL_PATH / "osvvm" / "*.vhd")):
bname = Path(file_name).name
if (
bname == "AlertLogPkg_body_BVUL.vhd"
or (
(simulator_coverage_api != "rivierapro")
and (bname == "VendorCovApiPkg_Aldec.vhd")
)
or (
(simulator_coverage_api == "rivierapro")
and (bname == "VendorCovApiPkg.vhd")
)

if ((bname == "AlertLogPkg_body_BVUL.vhd") or ("2019" in bname)) or (
(simulator_coverage_api != "rivierapro")
and (bname in ("VendorCovApiPkg_Aldec.vhd", "VendorCovApiPkg.vhd"))
):
continue

Expand Down

0 comments on commit f0578b9

Please sign in to comment.