Hi,
I am trying to build my first uvm_express test and I am running into an issue with the coverage_package.sv file. I am getting the follow error in Questasim:
** Error: (vlog-13069) ../pdw_coverage_pkg/pdw_coverage_pkg.sv(11): near “endpackage”: syntax error, unexpected endpackage, expecting function or task.
My pdw_coverage_pkg is as follows:
package pdw_coverage_pkg;
import uvm_pkg::*;
include "uvm_macros.svh" include “pdw_transaction.svh”
include "pdw_monitor.svh" include “pdw_coverage.svh”
include "pdw_coverage_agent.svh" include “pdw_coverage_test.svh”
endpackage
any ideas where I can look to find this issue?
-M