From f251f7b774d737d73937af453596b66c25f79388 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Tue, 17 Sep 2024 21:21:08 -0400 Subject: [PATCH] Tests: CONSTRIAINTIGN, ZERODLY no longer need suppression on UVM --- test_regress/t/t_uvm_all.py | 15 +++++++++------ test_regress/t/t_uvm_todo.py | 7 +++---- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/test_regress/t/t_uvm_all.py b/test_regress/t/t_uvm_all.py index 99de0e34b..790de6b74 100755 --- a/test_regress/t/t_uvm_all.py +++ b/test_regress/t/t_uvm_all.py @@ -11,12 +11,15 @@ import vltest_bootstrap test.scenarios('vlt') -test.compile(v_flags2=[ - "--binary --timing", "-Wno-PKGNODECL -Wno-IMPLICITSTATIC -Wno-CONSTRAINTIGN -Wno-MISINDENT", - "-Wno-WIDTHEXPAND -Wno-WIDTHTRUNC -Wno-CASTCONST -Wno-REALCVT", - "--error-limit 200 --debug-exit-uvm" -], - verilator_make_gmake=False) +test.compile( + v_flags2=[ + "--binary --timing", # + "-Wno-PKGNODECL -Wno-IMPLICITSTATIC -Wno-MISINDENT", + "-Wno-CASEINCOMPLETE -Wno-CASTCONST -Wno-SYMRSVDWORD -Wno-WIDTHEXPAND -Wno-WIDTHTRUNC", + "-Wno-REALCVT", # TODO note mostly related to $realtime - could suppress or fix upstream + "--error-limit 200 --debug-exit-uvm" + ], + verilator_make_gmake=False) #test.execute() diff --git a/test_regress/t/t_uvm_todo.py b/test_regress/t/t_uvm_todo.py index fa2facbf8..91773036f 100755 --- a/test_regress/t/t_uvm_todo.py +++ b/test_regress/t/t_uvm_todo.py @@ -14,11 +14,10 @@ test.scenarios('vlt') test.compile( v_flags2=[ - "--timing", - "-Wno-PKGNODECL -Wno-IMPLICITSTATIC -Wno-CONSTRAINTIGN -Wno-MISINDENT", + "--timing", # + "-Wno-PKGNODECL -Wno-IMPLICITSTATIC -Wno-MISINDENT", "-Wno-CASEINCOMPLETE -Wno-CASTCONST -Wno-SYMRSVDWORD -Wno-WIDTHEXPAND -Wno-WIDTHTRUNC", - "-Wno-REALCVT", # TODO note mostly related to $realtime - could suppress or fix upstream - "-Wno-ZERODLY", # TODO issue #4494, add support + "-Wno-REALCVT" # TODO note mostly related to $realtime - could suppress or fix upstream ], make_flags=['-k -j ' + str(multiprocessing.cpu_count())], verilator_make_gmake=False)