Merge pull request #1244 from Project-OSRM/run_unittests_on_travis

Run unittests on travis
This commit is contained in:
Dennis Luxen 2014-10-28 10:35:22 -04:00
commit d2bd238274
2 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ before_script:
script:
- make -j 2
- make -j 2 tests
- ./datastructure-tests
- cd ..
- cucumber -p verify
after_script:

View File

@ -26,7 +26,7 @@ typedef StaticRTree<TestData,
TEST_LEAF_NODE_SIZE> TestStaticRTree;
// Choosen by a fair W20 dice roll (this value is completely arbitrary)
constexpr unsigned RANDOM_SEED = 15;
constexpr unsigned RANDOM_SEED = 42;
static const int32_t WORLD_MIN_LAT = -90 * COORDINATE_PRECISION;
static const int32_t WORLD_MAX_LAT = 90 * COORDINATE_PRECISION;
static const int32_t WORLD_MIN_LON = -180 * COORDINATE_PRECISION;