Skip to content

Commit 2aac478

Browse files
fix unit test compilation error
1 parent 5d2695d commit 2aac478

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vpr/test/test_noc_place_utils.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ TEST_CASE("test_initial_noc_placement", "[noc_place_utils]") {
189189
}
190190

191191
// now call the test function
192-
initial_noc_routing();
192+
initial_noc_routing({});
193193

194194
// now verify the function by comparing the link bandwidths in the noc model (should have been updated by the test function) to the golden set
195195
int number_of_links = golden_link_bandwidths.size();
@@ -379,7 +379,7 @@ TEST_CASE("test_initial_comp_cost_functions", "[noc_place_utils]") {
379379

380380
// assume this works
381381
// this is needed to set up the global noc packet router and also global datastructures
382-
initial_noc_routing();
382+
initial_noc_routing({});
383383

384384
SECTION("test_comp_noc_aggregate_bandwidth_cost") {
385385
//initialize all the cost calculator datastructures
@@ -664,7 +664,7 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_
664664

665665
// assume this works
666666
// this is needed to set up the global noc packet router and also global datastructures
667-
initial_noc_routing();
667+
initial_noc_routing({});
668668

669669
// datastructure below will store the bandwidth usages of all the links
670670
// and will be updated throughout this test.
@@ -1523,7 +1523,7 @@ TEST_CASE("test_revert_noc_traffic_flow_routes", "[noc_place_utils]") {
15231523

15241524
// assume this works
15251525
// this is needed to set up the global noc packet router and also global datastructures
1526-
initial_noc_routing();
1526+
initial_noc_routing({});
15271527

15281528
// datastructure below will store the bandwidth usages of all the links
15291529
// and will be updated throughout this test.

0 commit comments

Comments
 (0)