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 28e308a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions vunit/builtins.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,16 +173,16 @@ 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 ("2019" in bname):
continue

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")
)
(simulator_coverage_api != "rivierapro")
and (bname == "VendorCovApiPkg_Aldec.vhd")
) or (
(simulator_coverage_api == "rivierapro")
and (bname == "VendorCovApiPkg.vhd")
):
continue

Expand Down

0 comments on commit 28e308a

Please sign in to comment.