source: tests/src/Makefile.am @ bc3c51b

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

tests/src/Makefile.am: add filterbank_mel test

  • Property mode set to 100644
File size: 967 bytes
Line 
1AM_CFLAGS = -I$(top_srcdir)/src
2AM_LDFLAGS = -L$(top_builddir)/src -laubio @FFTWLIB_LIBS@
3
4test_phasevoc_jack_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/ext @JACK_CFLAGS@
5test_phasevoc_jack_LDADD  = $(AM_LDFLAGS) -laubioext -L$(top_builddir)/ext @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-phasevoc-jack \
22        test-onsetdetection \
23        test-pitchyin \
24        test-pitchyinfft \
25        test-pitchschmitt \
26        test-pitchfcomb \
27        test-pitchmcomb \
28        test-pitchdetection \
29        test-beattracking \
30        test-onset \
31        test-tempo \
32        test-tss
33
34run-tests: $(bin_PROGRAMS)
35        @for i in $(bin_PROGRAMS); do echo $$i; ((time ./$$i 2>&1 > /dev/null) 2>&1; echo $$?); done
36
37run-valgrind-tests: $(bin_PROGRAMS)
38        @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.