Skip to content

Commit 4efa400

Browse files
committed
ram_8x7: add eqy_repair_tie_test
To see differences before after repair_tie_low: bazelisk test eqy_repair_tie_test --test_output=streamed Some clue here: partition: ERROR: conflicting matches for gold bit \W0_data [0]: \W0_data [0] vs \net Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 2bd4e32 commit 4efa400

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

test/orfs/ram_8x7/BUILD

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,34 @@ filegroup(
9696
name = "ram_8x7_{stage}_sim_test".format(stage = stage),
9797
cc_srcs = ["ram_8x7_sim.cpp"],
9898
module_top = "ram_8x7",
99-
verilog = [":ram_8x7_{stage}.v".format(stage = stage) if stage != "source" else ":ram_8x7.sv"],
10099
tags = ["manual"],
100+
verilog = [":ram_8x7_{stage}.v".format(stage = stage) if stage != "source" else ":ram_8x7.sv"],
101101
) for stage in STAGES[1:]]
102102

103-
OTHER = ["good.v", "bad.v"]
103+
OTHER = [
104+
"good.v",
105+
"bad.v",
106+
]
107+
104108
[sim_test(
105109
name = "ram_8x7_{other}_sim_test".format(other = other[:-2]),
106110
cc_srcs = ["ram_8x7_sim.cpp"],
107111
module_top = "ram_8x7",
108-
verilog = [other],
109112
tags = ["manual"],
113+
verilog = [other],
110114
) for other in OTHER]
115+
116+
eqy_test(
117+
name = "eqy_repair_tie_test",
118+
depth = 1,
119+
gate_verilog_files = [
120+
"bad.v",
121+
"//test/orfs/mock-array:asap7_files",
122+
],
123+
gold_verilog_files = [
124+
"good.v",
125+
"//test/orfs/mock-array:asap7_files",
126+
],
127+
module_top = "ram_8x7",
128+
tags = ["manual"],
129+
)

0 commit comments

Comments
 (0)