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)