aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2015-03-31 22:32:11 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2015-03-31 22:32:11 +0200
commit2d3b060abd28c08895a5fa0ea21d3547133e28f3 (patch)
tree8ca857b59520dd3e04056932904119b0478022df
parentcb3c0113e9837c333b5b9a2b14a48c5b2899c713 (diff)
downloadusdx-2d3b060abd28c08895a5fa0ea21d3547133e28f3.tar.gz
usdx-2d3b060abd28c08895a5fa0ea21d3547133e28f3.tar.xz
usdx-2d3b060abd28c08895a5fa0ea21d3547133e28f3.zip
test: Fix include paths.
-rw-r--r--test/base/ringbuffer.cpp2
-rw-r--r--test/base/songloading.cpp4
-rw-r--r--test/base/timestamp.cpp2
-rw-r--r--test/menu/application.cpp2
-rw-r--r--test/utils/color/hsv.cpp4
-rw-r--r--test/utils/color/rgb.cpp4
-rw-r--r--test/utils/image.cpp2
-rw-r--r--test/utils/math.cpp2
-rw-r--r--test/utils/point.cpp2
-rw-r--r--test/utils/rectangle.cpp2
10 files changed, 13 insertions, 13 deletions
diff --git a/test/base/ringbuffer.cpp b/test/base/ringbuffer.cpp
index ad0e86a2..95a21854 100644
--- a/test/base/ringbuffer.cpp
+++ b/test/base/ringbuffer.cpp
@@ -29,7 +29,7 @@
#include <cppunit/extensions/HelperMacros.h>
-#include "ringbuffer.hpp"
+#include "base/ringbuffer.hpp"
namespace usdx
{
diff --git a/test/base/songloading.cpp b/test/base/songloading.cpp
index ec5c3699..84291c88 100644
--- a/test/base/songloading.cpp
+++ b/test/base/songloading.cpp
@@ -26,8 +26,8 @@
#include <iostream>
#include <cppunit/extensions/HelperMacros.h>
-#include "song.hpp"
-#include "songloading/songloader.hpp"
+#include "base/song.hpp"
+#include "base/songloading/songloader.hpp"
#include <log4cpp/Category.hh>
#include <log4cpp/Priority.hh>
diff --git a/test/base/timestamp.cpp b/test/base/timestamp.cpp
index 87186d97..2d8e6caf 100644
--- a/test/base/timestamp.cpp
+++ b/test/base/timestamp.cpp
@@ -22,7 +22,7 @@
*
*/
-#include "timestamp.hpp"
+#include "base/timestamp.hpp"
#include <cppunit/extensions/HelperMacros.h>
#include <log4cpp/Category.hh>
diff --git a/test/menu/application.cpp b/test/menu/application.cpp
index daa68ac2..20be3542 100644
--- a/test/menu/application.cpp
+++ b/test/menu/application.cpp
@@ -24,7 +24,7 @@
* $Id$
*/
-#include "application.hpp"
+#include "menu/application.hpp"
#include "base/timestamp.hpp"
#include <exception>
diff --git a/test/utils/color/hsv.cpp b/test/utils/color/hsv.cpp
index 803f9ec5..cc660833 100644
--- a/test/utils/color/hsv.cpp
+++ b/test/utils/color/hsv.cpp
@@ -22,8 +22,8 @@
*
*/
-#include "hsv.hpp"
-#include "rgb.hpp"
+#include "utils/color/hsv.hpp"
+#include "utils/color/rgb.hpp"
#include <exception>
#include <cppunit/extensions/HelperMacros.h>
diff --git a/test/utils/color/rgb.cpp b/test/utils/color/rgb.cpp
index 932be8b4..6cb4c451 100644
--- a/test/utils/color/rgb.cpp
+++ b/test/utils/color/rgb.cpp
@@ -22,8 +22,8 @@
*
*/
-#include "hsv.hpp"
-#include "rgb.hpp"
+#include "utils/color/hsv.hpp"
+#include "utils/color/rgb.hpp"
#include <exception>
#include <cppunit/extensions/HelperMacros.h>
diff --git a/test/utils/image.cpp b/test/utils/image.cpp
index 8aeb57c6..32d4784f 100644
--- a/test/utils/image.cpp
+++ b/test/utils/image.cpp
@@ -24,7 +24,7 @@
* $Id$
*/
-#include "image.hpp"
+#include "utils/image.hpp"
#include <exception>
#include <cppunit/extensions/HelperMacros.h>
diff --git a/test/utils/math.cpp b/test/utils/math.cpp
index e97e200a..3e3ae5e6 100644
--- a/test/utils/math.cpp
+++ b/test/utils/math.cpp
@@ -24,7 +24,7 @@
* $Id$
*/
-#include "math.hpp"
+#include "utils/math.hpp"
#include <exception>
#include <cppunit/extensions/HelperMacros.h>
diff --git a/test/utils/point.cpp b/test/utils/point.cpp
index e7f3f918..d0ad492a 100644
--- a/test/utils/point.cpp
+++ b/test/utils/point.cpp
@@ -24,7 +24,7 @@
* $Id$
*/
-#include "point.hpp"
+#include "utils/point.hpp"
#include <exception>
#include <cppunit/extensions/HelperMacros.h>
diff --git a/test/utils/rectangle.cpp b/test/utils/rectangle.cpp
index 9064bbff..a0de0023 100644
--- a/test/utils/rectangle.cpp
+++ b/test/utils/rectangle.cpp
@@ -24,7 +24,7 @@
* $Id$
*/
-#include "rectangle.hpp"
+#include "utils/rectangle.hpp"
#include <exception>
#include <cppunit/extensions/HelperMacros.h>