From 0e9551ece1c2b4cf0be86eb2a6ee2216191cbc2e Mon Sep 17 00:00:00 2001 From: Kamil Danecki Date: Fri, 27 Mar 2026 12:50:19 +0100 Subject: [PATCH] Update test Signed-off-by: Kamil Danecki --- test_regress/t/t_fork_write_after_timing.py | 2 +- test_regress/t/t_fork_write_after_timing.v | 11 ----------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/test_regress/t/t_fork_write_after_timing.py b/test_regress/t/t_fork_write_after_timing.py index 6f2f7c7d7..55248e18d 100755 --- a/test_regress/t/t_fork_write_after_timing.py +++ b/test_regress/t/t_fork_write_after_timing.py @@ -11,7 +11,7 @@ import vltest_bootstrap test.scenarios('simulator') -test.compile(verilator_flags2=["--Wno-initialdly", "--binary"]) +test.compile(verilator_flags2=["--binary"]) test.execute(expect_filename=test.golden_filename) diff --git a/test_regress/t/t_fork_write_after_timing.v b/test_regress/t/t_fork_write_after_timing.v index 08d9c4228..bac418fac 100644 --- a/test_regress/t/t_fork_write_after_timing.v +++ b/test_regress/t/t_fork_write_after_timing.v @@ -21,8 +21,6 @@ module t; t2(x1); t3(x1); t4(x1); - t5(x2); - t6(x2); #5 $write("*-* All Finished *-*\n"); $finish; @@ -59,13 +57,4 @@ module t; join_none #2 $display("t4 end %d", x); endtask - - task t5(output int x); - if (x != 0) $stop; - x <= #1 3; - endtask - - task t6(inout int x); - x <= #1 4; - endtask endmodule