source: tests/src/Makefile.am @ c721874

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

splitted test-sample.c in test-{f,c}vec.c

  • Property mode set to 100644
File size: 938 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-mfft \
10        test-hist \
11        test-scale \
12        test-cvec \
13        test-fvec \
14        test-window \
15        test-filter \
16        test-biquad \
17        test-resample \
18        test-peakpick \
19        test-phasevoc \
20        test-phasevoc-jack \
21        test-onsetdetection \
22        test-pitchyin \
23        test-pitchyinfft \
24        test-pitchschmitt \
25        test-pitchfcomb \
26        test-pitchmcomb \
27        test-pitchdetection \
28        test-beattracking \
29        test-onset \
30        test-tempo \
31        test-tss
32
33run-tests: $(bin_PROGRAMS)
34        @for i in $(bin_PROGRAMS); do echo $$i; ((time ./$$i 2>&1 > /dev/null) 2>&1; echo $$?); 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.