Merge pull request #221 from ygorshenin/fix-search-integration-tests

[search] Added FeatureOffsetsTable generation for test mwms.
This commit is contained in:
mpimenov 2015-10-13 14:11:00 +03:00
commit 4f9195930e
2 changed files with 4 additions and 1 deletions

View file

@ -112,6 +112,7 @@ namespace feature
detail::MappedFile::Handle m_handle;
};
// Builds feature offsets table in an mwm or rebuilds an existing
// one.
bool BuildOffsetsTable(string const & filePath);
} // namespace feature

View file

@ -2,6 +2,7 @@
#include "indexer/classificator.hpp"
#include "indexer/data_header.hpp"
#include "indexer/features_offsets_table.hpp"
#include "indexer/index_builder.hpp"
#include "indexer/search_index_builder.hpp"
@ -50,6 +51,7 @@ void TestMwmBuilder::Finish()
CHECK(GenerateFinalFeatures(info, m_file.GetCountryFile().GetNameWithoutExt(),
feature::DataHeader::country),
("Can't sort features."));
CHECK(feature::BuildOffsetsTable(m_file.GetPath(MapOptions::Map)), ("Can't build feature offsets table."));
CHECK(indexer::BuildIndexFromDatFile(m_file.GetPath(MapOptions::Map),
m_file.GetPath(MapOptions::Map)),
("Can't build geometry index."));