Skip to content

Commit

Permalink
Tests: Simplify waivers now have --vlt-std-waiver
Browse files Browse the repository at this point in the history
  • Loading branch information
wsnyder committed Nov 13, 2024
1 parent aa34fa6 commit 3436e07
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:

######################################################################

git-update:
git-update git-pull:
git pull
git submodule update --remote --merge

Expand Down
7 changes: 2 additions & 5 deletions t/t_uvm_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@

uvm_root = os.path.abspath(test.t_dir + "/../submodules/uvm")

test.lint(v_flags=[
"+incdir+" + uvm_root + "/src",
"-Wall -Wno-DECLFILENAME -Wno-VARHIDDEN -Wno-CONSTRAINTIGN -Wno-MISINDENT",
"--debug-exit-uvm"
])
test.lint(
v_flags=["+incdir+" + uvm_root + "/src", "-Wall", "--debug-exit-uvm"])

test.passes()
2 changes: 2 additions & 0 deletions t/t_uvm_parse.v
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
// All the heavy lifting needed here
`include "uvm_pkg.sv"

// verilator lint_off DECLFILENAME

module t (/*AUTOARG*/);
initial begin
$write("Hello World\n");
Expand Down

0 comments on commit 3436e07

Please sign in to comment.