Skip to content

Commit

Permalink
Fix port order in test for firtool 1.57.0
Browse files Browse the repository at this point in the history
Fix a port order change in BoringUtilsTapSpec.  Port order in firtool
1.57.0 is done in the exact order as the FIRRTL/HW modules and no
re-ordering and grouping of inputs and outputs is done.  This change to
the test has no effect.

Signed-off-by: Schuyler Eldridge <schuyler.eldridge@sifive.com>
  • Loading branch information
seldridge committed Oct 3, 2023
1 parent 6dbbc73 commit f270543
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/scala/chiselTests/BoringUtilsTapSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -333,13 +333,13 @@ class BoringUtilsTapSpec extends ChiselFlatSpec with ChiselRunners with Utils wi
// Child ports.
"module Child(",
"input v_0_in,",
" v_1_in,",
"output v_0_out",
"output v_0_out,",
"input v_1_in",
// Instantiation.
"Child child (",
".v_0_in (inputs_0),", // Alive because feeds outV_0_out probe.
".v_1_in (inputs_1),", // rwprobe target.
".v_0_out (", // rwprobe target.
".v_1_in (inputs_1)", // rwprobe target.
// Ref ABI. Names of internal signals are subject to change.
"`define ref_Foo_Foo_outV_0_out child.v_0_out",
"`define ref_Foo_Foo_outV_1_in child.v_1_in"
Expand Down

0 comments on commit f270543

Please sign in to comment.