diff options
author | Max Horn | 2011-02-09 01:09:01 +0000 |
---|---|---|
committer | Max Horn | 2011-02-09 01:09:01 +0000 |
commit | 42ab839dd6c8a1570b232101eb97f4e54de57935 (patch) | |
tree | 3b763d8913a87482b793e0348c88b9a5f40eecc9 /test | |
parent | 386203a3d6ce1abf457c9110d695408ec5f01b85 (diff) | |
download | scummvm-rg350-42ab839dd6c8a1570b232101eb97f4e54de57935.tar.gz scummvm-rg350-42ab839dd6c8a1570b232101eb97f4e54de57935.tar.bz2 scummvm-rg350-42ab839dd6c8a1570b232101eb97f4e54de57935.zip |
AUDIO: Rename sound/ dir to audio/
svn-id: r55850
Diffstat (limited to 'test')
-rw-r--r-- | test/audio/audiostream.h (renamed from test/sound/audiostream.h) | 2 | ||||
-rw-r--r-- | test/audio/helper.h (renamed from test/sound/helper.h) | 2 | ||||
-rw-r--r-- | test/audio/raw.h (renamed from test/sound/raw.h) | 2 | ||||
-rw-r--r-- | test/audio/timestamp.h (renamed from test/sound/timestamp.h) | 2 | ||||
-rw-r--r-- | test/module.mk | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/test/sound/audiostream.h b/test/audio/audiostream.h index ba3adcb34c..1ffb2308ec 100644 --- a/test/sound/audiostream.h +++ b/test/audio/audiostream.h @@ -1,6 +1,6 @@ #include <cxxtest/TestSuite.h> -#include "sound/audiostream.h" +#include "audio/audiostream.h" #include "helper.h" diff --git a/test/sound/helper.h b/test/audio/helper.h index 394287c884..262ca1c060 100644 --- a/test/sound/helper.h +++ b/test/audio/helper.h @@ -1,7 +1,7 @@ #ifndef TEST_SOUND_HELPER_H #define TEST_SOUND_HELPER_H -#include "sound/decoders/raw.h" +#include "audio/decoders/raw.h" #include "common/stream.h" #include "common/endian.h" diff --git a/test/sound/raw.h b/test/audio/raw.h index b8f7b2dae6..51ec067f7e 100644 --- a/test/sound/raw.h +++ b/test/audio/raw.h @@ -1,6 +1,6 @@ #include <cxxtest/TestSuite.h> -#include "sound/decoders/raw.h" +#include "audio/decoders/raw.h" #include "helper.h" diff --git a/test/sound/timestamp.h b/test/audio/timestamp.h index d7188f8f44..ca56e34a4d 100644 --- a/test/sound/timestamp.h +++ b/test/audio/timestamp.h @@ -1,6 +1,6 @@ #include <cxxtest/TestSuite.h> -#include "sound/timestamp.h" +#include "audio/timestamp.h" class TimestampTestSuite : public CxxTest::TestSuite { diff --git a/test/module.mk b/test/module.mk index 20425b6359..3542ae2903 100644 --- a/test/module.mk +++ b/test/module.mk @@ -5,8 +5,8 @@ # ###################################################################### -TESTS := $(srcdir)/test/common/*.h $(srcdir)/test/sound/*.h -TEST_LIBS := sound/libsound.a common/libcommon.a +TESTS := $(srcdir)/test/common/*.h $(srcdir)/test/audio/*.h +TEST_LIBS := audio/libaudio.a common/libcommon.a # TEST_FLAGS := --runner=StdioPrinter |