forked from organicmaps/organicmaps
routing index mapping in test bugfix + script to clean temporary routing indexes
This commit is contained in:
parent
cb2b6f63f8
commit
9341d7b926
2 changed files with 15 additions and 0 deletions
|
@ -96,6 +96,7 @@ void TestMapping(InputDataT const & data,
|
|||
FilesMappingContainer cont(ftSegsPath);
|
||||
OsrmFtSegMapping mapping;
|
||||
mapping.Load(cont);
|
||||
mapping.Map(cont);
|
||||
|
||||
TestNodeId(mapping, nodeIds);
|
||||
TestSegmentRange(mapping, ranges);
|
||||
|
|
14
tools/unix/clean_indexes.sh
Executable file
14
tools/unix/clean_indexes.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -u -x
|
||||
BASE_PATH=$(pwd)
|
||||
DATA_PATH=$BASE_PATH/../../../data
|
||||
|
||||
COUNTRY_LIST=${COUNTRY_LIST-$(ls -1 $DATA_PATH/*.mwm)}
|
||||
|
||||
if [ "$COUNTRY_LIST" ]
|
||||
then
|
||||
echo "$COUNTRY_LIST" | while read file ; do
|
||||
rm -rf ${file%.mwm}/
|
||||
done
|
||||
fi
|
Loading…
Add table
Reference in a new issue