tests/src: clean up includes
authorPaul Brossier <piem@piem.org>
Wed, 12 Mar 2014 15:11:50 +0000 (12:11 -0300)
committerPaul Brossier <piem@piem.org>
Wed, 12 Mar 2014 15:11:50 +0000 (12:11 -0300)
tests/src/test-cvec.c
tests/src/test-delnull.c
tests/src/test-fmat.c
tests/src/test-fvec.c
tests/src/test-lvec.c
tests/src/test-mathutils-window.c
tests/src/test-mathutils.c

index 75a19d7..c1e6bca 100644 (file)
@@ -1,4 +1,4 @@
-#include <aubio.h>
+#include "aubio.h"
 #include "utils_tests.h"
 
 int main (void)
index 1c7ecd8..6a0afc4 100644 (file)
@@ -1,5 +1,5 @@
 #include <stdlib.h>
-#include <aubio.h>
+#include "aubio.h"
 
 // Because aubio does not check for double free, this program will crash.
 // Programs that call these functions should check for null pointers.
index ab8b274..218c027 100644 (file)
@@ -1,5 +1,5 @@
-#include <aubio.h>
-#include <assert.h>
+#include "aubio.h"
+#include "utils_tests.h"
 
 // create a new matrix and fill it with i * 1. + j * .1, where i is the row,
 // and j the column.
index fbbd418..c53e396 100644 (file)
@@ -1,5 +1,5 @@
-#include <aubio.h>
-#include <assert.h>
+#include "aubio.h"
+#include "utils_tests.h"
 
 int main (void)
 {
index 6e5c531..b1a2e0f 100644 (file)
@@ -1,4 +1,4 @@
-#include <aubio.h>
+#include "aubio.h"
 #include "utils_tests.h"
 
 int main (void)
index e09626f..4b45e7f 100644 (file)
@@ -1,6 +1,5 @@
-#include <aubio.h>
-#include <math.h>
-#include <stdio.h>
+#include "aubio.h"
+#include "utils_tests.h"
 
 int main (void)
 {
index ad20d75..0a6eedf 100644 (file)
@@ -1,7 +1,6 @@
-#include <stdio.h>
-#include <assert.h>
 #define AUBIO_UNSTABLE 1
-#include <aubio.h>
+#include "aubio.h"
+#include "utils_tests.h"
 
 int test_next_power_of_two (void);
 int test_miditofreq (void);