Skip to content

Commit

Permalink
Check nets are routed
Browse files Browse the repository at this point in the history
Signed-off-by: Eddie Hung <eddie.hung@amd.com>
  • Loading branch information
eddieh-xlnx committed Nov 19, 2024
1 parent 741fac3 commit 28106d0
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,10 @@ public void testSymmetricClkRouting() {
if (node != null) used.add(node);
}
}
DesignTools.updatePinsIsRouted(net);
for (SitePinInst spi : net.getPins()) {
Assertions.assertTrue(spi.isRouted());
}
}

if (FileTools.isVivadoOnPath()) {
Expand Down

0 comments on commit 28106d0

Please sign in to comment.