Tests: Fix race condition in t_udp_nonsequential

This commit is contained in:
Geza Lore 2026-06-09 13:01:16 +01:00
parent 4f134c514b
commit de0236be2f
1 changed files with 3 additions and 3 deletions

View File

@ -23,22 +23,22 @@ module t (
sel = 0;
end
else if (cycle == 1) begin
if (z != 0) $stop;
a = 1;
b = 1;
sel = 0;
if (z != 0) $stop;
end
else if (cycle == 2) begin
if (z != 1) $stop;
a = 0;
b = 1;
sel = 0;
if (z != 1) $stop;
end
else if (cycle == 3) begin
if (z != 0) $stop;
a = 1;
b = 0;
sel = 0;
if (z != 0) $stop;
end
else if (cycle == 4) begin
if (z != 1) $stop;