Skip to content

Commit 24e42cc

Browse files
committed
feat(network_mod-uvm): lower number of transaction in verification
1 parent 588718d commit 24e42cc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/comp/eth/network_mod/uvm/tbench/cmac/env/sequence.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ class virt_sequence_simple #(
437437
end
438438

439439
// Stop the sequences
440-
wait (transactions >= ETH_PORTS*30_000);
440+
wait (transactions >= ETH_PORTS*20_000);
441441
seq_sync_port_end.send_stop();
442442
for (int unsigned it = 0; it < ETH_PORTS; it++) begin
443443
wait(port_end[it] == 1);

core/comp/eth/network_mod/uvm/tbench/e-tile/env/sequence.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ class virt_sequence_simple #(ETH_PORTS, ETH_TX_HDR_WIDTH, ETH_RX_HDR_WIDTH, ITEM
393393
end
394394

395395
//SEND STOP
396-
wait (transactions >= ETH_PORTS*30_000);
396+
wait (transactions >= ETH_PORTS*20_000);
397397
seq_sync_port_end.send_stop();
398398
for (int unsigned it = 0; it < ETH_PORTS; it++) begin
399399
wait(port_end[it] == 1);

core/comp/eth/network_mod/uvm/tbench/f-tile/env/sequence.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ class virt_sequence_simple #(
428428
end
429429

430430
//SEND STOP
431-
wait (transactions >= ETH_PORTS*30_000);
431+
wait (transactions >= ETH_PORTS*20_000);
432432
seq_sync_port_end.send_stop();
433433
for (int unsigned it = 0; it < ETH_PORTS; it++) begin
434434
wait(port_end[it] == 1);

0 commit comments

Comments
 (0)