routing index mapping in test bugfix + script to clean temporary routing indexes

This commit is contained in:
Lev Dragunov 2015-04-01 17:34:47 +03:00 committed by Alex Zolotarev
parent cb2b6f63f8
commit 9341d7b926
2 changed files with 15 additions and 0 deletions

View file

@ -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
View 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