Skip to content

Commit 4cfd197

Browse files
committed
vpr: test: adjust grid layout test as NULL tile is not in the grid
Signed-off-by: Alessandro Comodi <[email protected]>
1 parent 20a1e2b commit 4cfd197

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/test/test_interchange_device.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ TEST_CASE("read_interchange_layout", "[vpr]") {
5353
REQUIRE(gd.height == 12);
5454
REQUIRE(gd.width == 12);
5555

56-
std::unordered_map<std::string, bool> tile_types({{"NULL", false}, {"PWR", false}, {"IOB", false}, {"CLB", false}});
56+
std::unordered_map<std::string, bool> tile_types({{"PWR", false}, {"IOB", false}, {"CLB", false}});
5757
for (auto& loc : gd.loc_defs) {
5858
auto ret = tile_types.find(loc.block_type);
5959
REQUIRE(ret != tile_types.end());

0 commit comments

Comments
 (0)