Fix include path for integration_tests

This commit is contained in:
Sergey Yershov 2015-04-10 01:59:06 +03:00 committed by Alex Zolotarev
parent ef1b54ccd1
commit 3413b7dd18
4 changed files with 19 additions and 19 deletions

View file

@ -1,6 +1,6 @@
#include "../testing/testing.hpp"
#include "testing/testing.hpp"
#include "osrm_test_tools.hpp"
#include "integration_tests/osrm_test_tools.hpp"
#include "../indexer/mercator.hpp"

View file

@ -1,19 +1,19 @@
#include "osrm_test_tools.hpp"
#include "integration_tests/osrm_test_tools.hpp"
#include "../testing/testing.hpp"
#include "testing/testing.hpp"
#include "../indexer/index.hpp"
#include "indexer/index.hpp"
#include "../geometry/distance_on_sphere.hpp"
#include "geometry/distance_on_sphere.hpp"
#include "../routing/route.hpp"
#include "routing/route.hpp"
#include "../map/feature_vec_model.hpp"
#include "map/feature_vec_model.hpp"
#include "../platform/platform.hpp"
#include "../platform/preferred_languages.hpp"
#include "platform/platform.hpp"
#include "platform/preferred_languages.hpp"
#include "../search/search_engine.hpp"
#include "search/search_engine.hpp"
using namespace routing;

View file

@ -1,11 +1,11 @@
#pragma once
#include "../std/shared_ptr.hpp"
#include "../std/string.hpp"
#include "../std/vector.hpp"
#include "../std/set.hpp"
#include "std/shared_ptr.hpp"
#include "std/string.hpp"
#include "std/vector.hpp"
#include "std/set.hpp"
#include "../routing/osrm_router.hpp"
#include "routing/osrm_router.hpp"
/*
* These tests are developed to simplify routing integration tests writing.

View file

@ -1,8 +1,8 @@
#include "../testing/testing.hpp"
#include "testing/testing.hpp"
#include "osrm_test_tools.hpp"
#include "integration_tests/osrm_test_tools.hpp"
#include "../routing/route.hpp"
#include "routing/route.hpp"
using namespace routing;