forked from organicmaps/organicmaps-tmp
Merge pull request #221 from ygorshenin/fix-search-integration-tests
[search] Added FeatureOffsetsTable generation for test mwms.
This commit is contained in:
commit
4f9195930e
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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."));
|
||||
|
|
Loading…
Add table
Reference in a new issue