Skip to content

Commit db11770

Browse files
Add test br_multi_xfer_distributor_rr (#1190)
This PR adds the br_multi_xfer_distributor_rr directed test Signed-off-by: Michal Czyz <mczyz@antmicro.com>
1 parent 3483045 commit db11770

2 files changed

Lines changed: 687 additions & 0 deletions

File tree

multi_xfer/sim/BUILD.bazel

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,43 @@ br_verilog_sim_test_tools_suite(
3535
],
3636
deps = [":br_multi_xfer_reg_fwd_tb"],
3737
)
38+
39+
verilog_library(
40+
name = "br_multi_xfer_distributor_rr_tb",
41+
srcs = ["br_multi_xfer_distributor_rr_tb.sv"],
42+
deps = [
43+
"//misc/sim:br_test_driver",
44+
"//multi_xfer/rtl:br_multi_xfer_distributor_rr",
45+
],
46+
)
47+
48+
verilog_elab_test(
49+
name = "br_multi_xfer_distributor_rr_tb_elab_test",
50+
tool = "slang",
51+
deps = [":br_multi_xfer_distributor_rr_tb"],
52+
)
53+
54+
br_verilog_sim_test_tools_suite(
55+
name = "br_multi_xfer_distributor_rr_sim_test_tools_suite",
56+
params = {
57+
"NumSymbols": [
58+
"2",
59+
"3",
60+
],
61+
"NumFlows": [
62+
"3",
63+
"5",
64+
],
65+
"SymbolWidth": [
66+
"1",
67+
"8",
68+
"17",
69+
],
70+
"NumRandomCycles": ["120"],
71+
},
72+
tools = [
73+
"vcs",
74+
"verilator",
75+
],
76+
deps = [":br_multi_xfer_distributor_rr_tb"],
77+
)

0 commit comments

Comments
 (0)