Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conflict with signinfo's temporary linguistic node sequence file caused test failures. #4625

Merged
merged 14 commits into from Mar 12, 2024
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -96,6 +96,7 @@
* FIXED: Fixed roundoff issue in Tiles Row and Col methods [#4585](https://github.com/valhalla/valhalla/pull/4585)
* ADDED: isochrone proper polygon support & pbf output for isochrone [#4575](https://github.com/valhalla/valhalla/pull/4575)
* ADDED: return isotile grid as geotiff [#4594](https://github.com/valhalla/valhalla/pull/4594)
* FIXED: updated path location so that we don't share the same as utrecht.cc test [#4625](https://github.com/valhalla/valhalla/pull/4625)

## Release Date: 2023-05-11 Valhalla 3.4.0
* **Removed**
Expand Down
4 changes: 2 additions & 2 deletions test/graphparser.cc
Expand Up @@ -533,6 +533,7 @@ void Bike(const std::string& config_file) {
filesystem::remove(access_file);
filesystem::remove(from_restriction_file);
filesystem::remove(to_restriction_file);
filesystem::remove(bss_nodes_file);
filesystem::remove(linguistic_node_file);
}

Expand Down Expand Up @@ -677,7 +678,7 @@ void DoConfig() {
file << "{ \
\"mjolnir\": { \
\"id_table_size\": 1000, \
\"tile_dir\": \"test/data/parser_tiles\" \
gknisely marked this conversation as resolved.
Show resolved Hide resolved
\"tile_dir\": \"test/data/graph_parser_tiles\" \
} \
}";
} catch (...) {}
Expand Down Expand Up @@ -828,7 +829,6 @@ TEST(GraphParser, TestImportBssNode) {

filesystem::remove(ways_file);
filesystem::remove(way_nodes_file);
filesystem::remove(bss_nodes_file);
filesystem::remove(access_file);
filesystem::remove(from_restriction_file);
filesystem::remove(to_restriction_file);
Expand Down