diff --git a/Rakefile b/Rakefile index 0c5fb768a..2e7a44d61 100644 --- a/Rakefile +++ b/Rakefile @@ -64,6 +64,7 @@ def write_server_ini osm_file hsgrData=#{DATA_FOLDER}/#{osm_file}.osrm.hsgr nodesData=#{DATA_FOLDER}/#{osm_file}.osrm.nodes + edgesData=#{DATA_FOLDER}/#{osm_file}.osrm.edges ramIndex=#{DATA_FOLDER}/#{osm_file}.osrm.ramIndex fileIndex=#{DATA_FOLDER}/#{osm_file}.osrm.fileIndex namesData=#{DATA_FOLDER}/#{osm_file}.osrm.names diff --git a/features/step_definitions/processing.rb b/features/step_definitions/processing.rb index bd98e9be3..323604e1d 100644 --- a/features/step_definitions/processing.rb +++ b/features/step_definitions/processing.rb @@ -58,6 +58,7 @@ Given /^the preprocessed files for "([^"]*)" are present and up to date$/ do |ar File.exists?("#{area}.osrm.restrictions").should == true File.exists?("#{area}.osrm.hsgr").should == true File.exists?("#{area}.osrm.nodes").should == true + File.exists?("#{area}.osrm.edges").should == true File.exists?("#{area}.osrm.ramIndex").should == true File.exists?("#{area}.osrm.fileIndex").should == true end diff --git a/features/support/config.rb b/features/support/config.rb index 80db02b12..10ed87b28 100644 --- a/features/support/config.rb +++ b/features/support/config.rb @@ -32,6 +32,7 @@ Port = 5000 hsgrData=#{@osm_file}.osrm.hsgr nodesData=#{@osm_file}.osrm.nodes +edgesData=#{@osm_file}.osrm.edges ramIndex=#{@osm_file}.osrm.ramIndex fileIndex=#{@osm_file}.osrm.fileIndex namesData=#{@osm_file}.osrm.names