Skip to content

Commit

Permalink
axi_lite_dw_converter: Fix b response check in TB
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed Apr 25, 2023
1 parent c811d99 commit d0c6cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tb_axi_lite_dw_converter.sv
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ module tb_axi_lite_dw_converter #(
initial begin : proc_b_check
automatic b_chan_lite_t b_act, b_exp;
forever begin
wait((fifo_slv_r.size() > 0) && (fifo_mst_r.size() > 0));
wait((fifo_slv_b.size() > 0) && (fifo_mst_b.size() > 0));
b_act = fifo_slv_b.pop_front();
b_exp = fifo_mst_b.pop_front();
assert (b_act == b_exp) else $error("Slave port> B.resp is not expected: EXP: %h ACT:%h",
Expand Down

0 comments on commit d0c6cdb

Please sign in to comment.