From 8c81d215d3373ea912d69c44bba916ea25aa2bf5 Mon Sep 17 00:00:00 2001 From: Sergey Yershov Date: Fri, 10 Apr 2015 13:08:21 +0300 Subject: [PATCH] Fix include path for testing --- testing/benchmark.hpp | 8 ++++---- testing/testing.hpp | 12 ++++++------ testing/testing_utils.hpp | 2 +- testing/testingmain.cpp | 18 +++++++++--------- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/testing/benchmark.hpp b/testing/benchmark.hpp index b7c8972967..dea7407714 100644 --- a/testing/benchmark.hpp +++ b/testing/benchmark.hpp @@ -1,8 +1,8 @@ #pragma once -#include "testing.hpp" -#include "testregister.hpp" -#include "../base/timer.hpp" -#include "../std/iostream.hpp" +#include "testing/testing.hpp" +#include "testing/testregister.hpp" +#include "base/timer.hpp" +#include "std/iostream.hpp" namespace my { diff --git a/testing/testing.hpp b/testing/testing.hpp index 5f6b671d14..a866b8d13f 100644 --- a/testing/testing.hpp +++ b/testing/testing.hpp @@ -1,12 +1,12 @@ #pragma once -#include "testregister.hpp" +#include "testing/testregister.hpp" -#include "../base/exception.hpp" -#include "../base/math.hpp" -#include "../base/src_point.hpp" +#include "base/exception.hpp" +#include "base/math.hpp" +#include "base/src_point.hpp" -#include "../std/iostream.hpp" -#include "../std/string.hpp" +#include "std/iostream.hpp" +#include "std/string.hpp" #define UNIT_TEST(name) \ diff --git a/testing/testing_utils.hpp b/testing/testing_utils.hpp index 32cd279f4e..67a6ddf050 100644 --- a/testing/testing_utils.hpp +++ b/testing/testing_utils.hpp @@ -1,5 +1,5 @@ #pragma once -#include "../std/vector.hpp" +#include "std/vector.hpp" template vector Vec(T x0) { diff --git a/testing/testingmain.cpp b/testing/testingmain.cpp index 58c3d6032d..425a70e04b 100644 --- a/testing/testingmain.cpp +++ b/testing/testingmain.cpp @@ -1,14 +1,14 @@ -#include "testregister.hpp" -#include "testing.hpp" +#include "testing/testregister.hpp" +#include "testing/testing.hpp" -#include "../base/logging.hpp" -#include "../base/string_utils.hpp" -#include "../base/regexp.hpp" +#include "base/logging.hpp" +#include "base/string_utils.hpp" +#include "base/regexp.hpp" -#include "../std/iostream.hpp" -#include "../std/string.hpp" -#include "../std/vector.hpp" -#include "../std/target_os.hpp" +#include "std/iostream.hpp" +#include "std/string.hpp" +#include "std/vector.hpp" +#include "std/target_os.hpp" #ifdef OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP