aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-24 00:20:01 +0100
committerMax Kellermann <max@duempel.org>2014-01-24 00:20:01 +0100
commit197b503f3ecbf68191b37a7c5fb9c25e975059ce (patch)
treee5889c528790eeddc6e98fdce4c87d34cdd1f588 /test
parent129eb178eb45fd148ee8b9822b11e7a4bf8ccc00 (diff)
downloadmpd-197b503f3ecbf68191b37a7c5fb9c25e975059ce.tar.gz
mpd-197b503f3ecbf68191b37a7c5fb9c25e975059ce.tar.xz
mpd-197b503f3ecbf68191b37a7c5fb9c25e975059ce.zip
Config*: move to config/
Diffstat (limited to 'test')
-rw-r--r--test/DumpDatabase.cxx4
-rw-r--r--test/dump_playlist.cxx2
-rw-r--r--test/dump_rva2.cxx2
-rw-r--r--test/dump_text_file.cxx2
-rw-r--r--test/read_conf.cxx2
-rw-r--r--test/read_mixer.cxx2
-rw-r--r--test/run_convert.cxx2
-rw-r--r--test/run_encoder.cxx2
-rw-r--r--test/run_filter.cxx4
-rw-r--r--test/run_input.cxx2
-rw-r--r--test/run_output.cxx6
-rw-r--r--test/test_vorbis_encoder.cxx2
-rw-r--r--test/visit_archive.cxx2
13 files changed, 17 insertions, 17 deletions
diff --git a/test/DumpDatabase.cxx b/test/DumpDatabase.cxx
index 7b959a215..caf433ac1 100644
--- a/test/DumpDatabase.cxx
+++ b/test/DumpDatabase.cxx
@@ -25,8 +25,8 @@
#include "LightDirectory.hxx"
#include "LightSong.hxx"
#include "PlaylistVector.hxx"
-#include "ConfigGlobal.hxx"
-#include "ConfigData.hxx"
+#include "config/ConfigGlobal.hxx"
+#include "config/ConfigData.hxx"
#include "tag/TagConfig.hxx"
#include "fs/Path.hxx"
#include "event/Loop.hxx"
diff --git a/test/dump_playlist.cxx b/test/dump_playlist.cxx
index 37fcfd391..292f3987e 100644
--- a/test/dump_playlist.cxx
+++ b/test/dump_playlist.cxx
@@ -22,7 +22,7 @@
#include "DetachedSong.hxx"
#include "playlist/SongEnumerator.hxx"
#include "InputStream.hxx"
-#include "ConfigGlobal.hxx"
+#include "config/ConfigGlobal.hxx"
#include "decoder/DecoderList.hxx"
#include "InputInit.hxx"
#include "IOThread.hxx"
diff --git a/test/dump_rva2.cxx b/test/dump_rva2.cxx
index 08e5352b8..fd46ee36c 100644
--- a/test/dump_rva2.cxx
+++ b/test/dump_rva2.cxx
@@ -21,7 +21,7 @@
#include "tag/TagId3.hxx"
#include "tag/TagRva2.hxx"
#include "ReplayGainInfo.hxx"
-#include "ConfigGlobal.hxx"
+#include "config/ConfigGlobal.hxx"
#include "util/Error.hxx"
#include "fs/Path.hxx"
#include "Log.hxx"
diff --git a/test/dump_text_file.cxx b/test/dump_text_file.cxx
index 581bb8829..5ce5e9da4 100644
--- a/test/dump_text_file.cxx
+++ b/test/dump_text_file.cxx
@@ -21,7 +21,7 @@
#include "IOThread.hxx"
#include "InputInit.hxx"
#include "InputStream.hxx"
-#include "ConfigGlobal.hxx"
+#include "config/ConfigGlobal.hxx"
#include "stdbin.h"
#include "TextInputStream.hxx"
#include "util/Error.hxx"
diff --git a/test/read_conf.cxx b/test/read_conf.cxx
index b519f4d78..42afdfb4b 100644
--- a/test/read_conf.cxx
+++ b/test/read_conf.cxx
@@ -18,7 +18,7 @@
*/
#include "config.h"
-#include "ConfigGlobal.hxx"
+#include "config/ConfigGlobal.hxx"
#include "fs/Path.hxx"
#include "util/Error.hxx"
#include "Log.hxx"
diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx
index 41261a310..60c60c86a 100644
--- a/test/read_mixer.cxx
+++ b/test/read_mixer.cxx
@@ -25,7 +25,7 @@
#include "GlobalEvents.hxx"
#include "Main.hxx"
#include "event/Loop.hxx"
-#include "ConfigData.hxx"
+#include "config/ConfigData.hxx"
#include "util/Error.hxx"
#include "Log.hxx"
diff --git a/test/run_convert.cxx b/test/run_convert.cxx
index 192ce808a..3c75b2c19 100644
--- a/test/run_convert.cxx
+++ b/test/run_convert.cxx
@@ -27,7 +27,7 @@
#include "AudioParser.hxx"
#include "AudioFormat.hxx"
#include "pcm/PcmConvert.hxx"
-#include "ConfigGlobal.hxx"
+#include "config/ConfigGlobal.hxx"
#include "util/FifoBuffer.hxx"
#include "util/Error.hxx"
#include "Log.hxx"
diff --git a/test/run_encoder.cxx b/test/run_encoder.cxx
index ace9faf18..f16d8cb0a 100644
--- a/test/run_encoder.cxx
+++ b/test/run_encoder.cxx
@@ -22,7 +22,7 @@
#include "encoder/EncoderPlugin.hxx"
#include "AudioFormat.hxx"
#include "AudioParser.hxx"
-#include "ConfigData.hxx"
+#include "config/ConfigData.hxx"
#include "util/Error.hxx"
#include "Log.hxx"
#include "stdbin.h"
diff --git a/test/run_filter.cxx b/test/run_filter.cxx
index a577cf8ee..16808ebb2 100644
--- a/test/run_filter.cxx
+++ b/test/run_filter.cxx
@@ -18,8 +18,8 @@
*/
#include "config.h"
-#include "ConfigData.hxx"
-#include "ConfigGlobal.hxx"
+#include "config/ConfigData.hxx"
+#include "config/ConfigGlobal.hxx"
#include "fs/Path.hxx"
#include "AudioParser.hxx"
#include "AudioFormat.hxx"
diff --git a/test/run_input.cxx b/test/run_input.cxx
index 2587a80b0..48892dc28 100644
--- a/test/run_input.cxx
+++ b/test/run_input.cxx
@@ -21,7 +21,7 @@
#include "TagSave.hxx"
#include "stdbin.h"
#include "tag/Tag.hxx"
-#include "ConfigGlobal.hxx"
+#include "config/ConfigGlobal.hxx"
#include "InputStream.hxx"
#include "InputInit.hxx"
#include "IOThread.hxx"
diff --git a/test/run_output.cxx b/test/run_output.cxx
index c18451e10..de2152337 100644
--- a/test/run_output.cxx
+++ b/test/run_output.cxx
@@ -21,9 +21,9 @@
#include "output/OutputControl.hxx"
#include "output/OutputInternal.hxx"
#include "output/OutputPlugin.hxx"
-#include "ConfigData.hxx"
-#include "ConfigGlobal.hxx"
-#include "ConfigOption.hxx"
+#include "config/ConfigData.hxx"
+#include "config/ConfigGlobal.hxx"
+#include "config/ConfigOption.hxx"
#include "Idle.hxx"
#include "Main.hxx"
#include "event/Loop.hxx"
diff --git a/test/test_vorbis_encoder.cxx b/test/test_vorbis_encoder.cxx
index fba0040d2..59b901da2 100644
--- a/test/test_vorbis_encoder.cxx
+++ b/test/test_vorbis_encoder.cxx
@@ -21,7 +21,7 @@
#include "encoder/EncoderList.hxx"
#include "encoder/EncoderPlugin.hxx"
#include "AudioFormat.hxx"
-#include "ConfigData.hxx"
+#include "config/ConfigData.hxx"
#include "stdbin.h"
#include "tag/Tag.hxx"
#include "tag/TagBuilder.hxx"
diff --git a/test/visit_archive.cxx b/test/visit_archive.cxx
index 001b9067b..ee9fd1a4e 100644
--- a/test/visit_archive.cxx
+++ b/test/visit_archive.cxx
@@ -20,7 +20,7 @@
#include "config.h"
#include "stdbin.h"
#include "tag/Tag.hxx"
-#include "ConfigGlobal.hxx"
+#include "config/ConfigGlobal.hxx"
#include "IOThread.hxx"
#include "InputInit.hxx"
#include "archive/ArchiveList.hxx"