From 856ceb599eb9e87b779ff7f18501032b31a313fa Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 3 Mar 2013 14:30:32 -0500 Subject: [PATCH] tests/src/io/: add comment about unstable --- ...test-sink_apple_audio_file.c => test-sink_apple_audio.c} | 5 ++++- tests/src/io/test-sink_sndfile.c | 6 +++++- ...-source_apple_audio_file.c => test-source_apple_audio.c} | 3 +++ tests/src/io/test-source_sndfile.c | 6 +++++- 4 files changed, 17 insertions(+), 3 deletions(-) rename tests/src/io/{test-sink_apple_audio_file.c => test-sink_apple_audio.c} (91%) rename tests/src/io/{test-source_apple_audio_file.c => test-source_apple_audio.c} (88%) diff --git a/tests/src/io/test-sink_apple_audio_file.c b/tests/src/io/test-sink_apple_audio.c similarity index 91% rename from tests/src/io/test-sink_apple_audio_file.c rename to tests/src/io/test-sink_apple_audio.c index 29a3b087..ff148bf8 100644 --- a/tests/src/io/test-sink_apple_audio_file.c +++ b/tests/src/io/test-sink_apple_audio.c @@ -2,6 +2,9 @@ #include #include "utils_tests.h" +// this file uses the unstable aubio api, please use aubio_sink instead +// see src/io/sink.h and tests/src/sink/test-sink.c + int main (int argc, char **argv) { sint_t err = 0; @@ -43,8 +46,8 @@ beach: del_aubio_sink_apple_audio(o); del_fvec(vec); #else - PRINT_ERR("aubio was not compiled with aubio_source_apple_audio\n"); err = 3; + PRINT_ERR("aubio was not compiled with aubio_source_apple_audio\n"); #endif /* __APPLE__ */ return err; } diff --git a/tests/src/io/test-sink_sndfile.c b/tests/src/io/test-sink_sndfile.c index 0f0857e9..66c62582 100644 --- a/tests/src/io/test-sink_sndfile.c +++ b/tests/src/io/test-sink_sndfile.c @@ -1,6 +1,10 @@ +#define AUBIO_UNSTABLE 1 #include #include "utils_tests.h" +// this file uses the unstable aubio api, please use aubio_sink instead +// see src/io/sink.h and tests/src/sink/test-sink.c + int main (int argc, char **argv) { sint_t err = 0; @@ -42,8 +46,8 @@ beach: del_aubio_sink_sndfile(o); del_fvec(vec); #else - PRINT_ERR("aubio was not compiled with aubio_source_sndfile\n"); err = 3; + PRINT_ERR("aubio was not compiled with aubio_source_sndfile\n"); #endif /* HAVE_SNDFILE */ return err; } diff --git a/tests/src/io/test-source_apple_audio_file.c b/tests/src/io/test-source_apple_audio.c similarity index 88% rename from tests/src/io/test-source_apple_audio_file.c rename to tests/src/io/test-source_apple_audio.c index 6a293546..7b07e5e7 100644 --- a/tests/src/io/test-source_apple_audio_file.c +++ b/tests/src/io/test-source_apple_audio.c @@ -2,6 +2,9 @@ #include #include "utils_tests.h" +// this file uses the unstable aubio api, please use aubio_source instead +// see src/io/source.h and tests/src/source/test-source.c + int main (int argc, char **argv) { uint_t err = 0; diff --git a/tests/src/io/test-source_sndfile.c b/tests/src/io/test-source_sndfile.c index 3362da23..267a9569 100644 --- a/tests/src/io/test-source_sndfile.c +++ b/tests/src/io/test-source_sndfile.c @@ -1,6 +1,10 @@ +#define AUBIO_UNSTABLE 1 #include #include "utils_tests.h" +// this file uses the unstable aubio api, please use aubio_source instead +// see src/io/source.h and tests/src/source/test-source.c + int main (int argc, char **argv) { uint_t err = 0; @@ -35,8 +39,8 @@ beach: del_aubio_source_sndfile (s); del_fvec (vec); #else + err = 3; PRINT_ERR("aubio was not compiled with aubio_source_sndfile\n"); - err = 2; #endif /* HAVE_SNDFILE */ return err; } -- 2.26.2