source: tests/src/Makefile.am @ 447d6cd

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

tests/src/Makefile.am: remove missing tests

  • Property mode set to 100644
File size: 921 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-hist \
9        test-scale \
10        test-cvec \
11        test-fvec \
12        test-window \
13        test-filter \
14        test-biquad \
15        test-resample \
16        test-peakpick \
17        test-phasevoc \
18        test-filterbank \
19        test-filterbank_mel \
20        test-mfcc \
21        test-phasevoc-jack \
22        test-onsetdetection \
23        test-pitchyin \
24        test-pitchyinfft \
25        test-pitchschmitt \
26        test-pitchfcomb \
27        test-pitchmcomb \
28        test-pitch \
29        test-onset \
30        test-mathutils \
31        test-tss
32
33run-tests: $(bin_PROGRAMS)
34        @for i in $(bin_PROGRAMS); do echo -n $$i\ ; ./$$i > /dev/null && echo OK || echo FAILED: $$?; done
35
36run-valgrind-tests: $(bin_PROGRAMS)
37        @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.