From: Paul Brossier Date: Sun, 15 Jul 2012 22:44:43 +0000 (-0600) Subject: tests/src/test-mathutils.c: define AUBIO_UNSTABLE here X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=735977567f15abf97fe24c8439f75c9a3e1c7a12;p=aubio.git tests/src/test-mathutils.c: define AUBIO_UNSTABLE here --- diff --git a/tests/src/test-mathutils.c b/tests/src/test-mathutils.c index bb3756cc..fe97c547 100644 --- a/tests/src/test-mathutils.c +++ b/tests/src/test-mathutils.c @@ -1,9 +1,10 @@ #include #include +#define AUBIO_UNSTABLE 1 #include int main(){ - int a, b; + uint_t a, b; a = 31; b = aubio_next_power_of_two(a); fprintf(stdout, "next_power_of_two of %d is %d\n", a, b);