[tests] factorise source tests
[aubio.git] / tests / src / test-delnull.c
1 #include <stdlib.h>
2 #include "aubio.h"
3
4 // When creating an aubio object, the user should check whether the object is
5 // set NULL, indicating the creation failed and the object was not allocated.
6
7 int main (void)
8 {
9   uint_t return_code = 0;
10   fvec_t *f = new_fvec(-12);
11   cvec_t *c = new_cvec(-12);
12   lvec_t *l = new_lvec(-12);
13   aubio_fft_t *fft = new_aubio_fft(-12);
14   if (f != NULL) {
15     return_code = 1;
16   } else if (c != NULL) {
17     return_code = 2;
18   } else if (l != NULL) {
19     return_code = 3;
20   } else if (fft != NULL) {
21     return_code = 3;
22   }
23   return return_code;
24 }