source: tests/src/Makefile.am @ 4bcd424

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 4bcd424 was 4bcd424, checked in by Paul Brossier <piem@piem.org>, 14 years ago

Makefile.am: include examples/ for jackio.h, add test-mathutils.c, simplify run command

  • Property mode set to 100644
File size: 968 bytes
Line 
1AM_CFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/examples
2AM_LDFLAGS = -L$(top_builddir)/src -laubio @FFTWLIB_LIBS@
3
4test_phasevoc_jack_CFLAGS = $(AM_CFLAGS) @JACK_CFLAGS@
5test_phasevoc_jack_LDADD  = $(AM_LDFLAGS) @JACK_LIBS@
6
7bin_PROGRAMS = \
8        test-fft \
9        test-hist \
10        test-scale \
11        test-cvec \
12        test-fvec \
13        test-window \
14        test-filter \
15        test-biquad \
16        test-resample \
17        test-peakpick \
18        test-phasevoc \
19        test-filterbank \
20        test-filterbank_mel \
21        test-mfcc \
22        test-phasevoc-jack \
23        test-onsetdetection \
24        test-pitchyin \
25        test-pitchyinfft \
26        test-pitchschmitt \
27        test-pitchfcomb \
28        test-pitchmcomb \
29        test-pitch \
30        test-beattracking \
31        test-onset \
32        test-tempo \
33        test-mathutils \
34        test-tss
35
36run-tests: $(bin_PROGRAMS)
37        @for i in $(bin_PROGRAMS); do echo -n $$i\ ; ./$$i > /dev/null && echo OK || echo FAILED: $$?; done
38
39run-valgrind-tests: $(bin_PROGRAMS)
40        @for i in $(bin_PROGRAMS); do echo $$i; valgrind .libs/lt-$$i 2>&1 | grep ERROR\ SUMMARY -A4; echo $$?; done
Note: See TracBrowser for help on using the repository browser.