diff --git a/tests/end-to-end.rs b/tests/end-to-end.rs index 771dfc368..8bce2eeac 100644 --- a/tests/end-to-end.rs +++ b/tests/end-to-end.rs @@ -207,6 +207,12 @@ fn request_nearest(world: &mut OSRMWorld, step: &Step) { } // if extracted file does not exist + let cache_path = cache_path.join(&world.osrm_digest); + if cache_path.exists() { + println!("{cache_path:?} exists"); + } else { + println!("{cache_path:?} does not exist"); + } // extract osm file (partition, preprocess) // parse table from Step and build query list