source: tests/src/Makefile.am @ 02418f6

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

tests/: move file around to match src/

  • Property mode set to 100644
File size: 1.2 KB
Line 
1AM_CFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/examples
2AM_LDFLAGS = -L$(top_builddir)/src -laubio @FFTWLIB_LIBS@
3
4spectral_test_phasevoc_jack_CFLAGS = $(AM_CFLAGS) @JACK_CFLAGS@
5spectral_test_phasevoc_jack_LDADD  = $(AM_LDFLAGS) @JACK_LIBS@
6
7noinst_PROGRAMS = \
8  test-fvec \
9  test-cvec \
10  test-mathutils \
11  test-mathutils-window \
12  pitch/test-pitchyin \
13  pitch/test-pitchyinfft \
14  pitch/test-pitch \
15  pitch/test-pitchmcomb \
16  pitch/test-pitchfcomb \
17  pitch/test-pitchschmitt \
18  temporal/test-cweighting \
19  temporal/test-resampler \
20  temporal/test-filter \
21  temporal/test-biquad \
22  temporal/test-aweighting \
23  onset/test-peakpicker \
24  onset/test-onset \
25  tempo/test-tempo \
26  tempo/test-beattracking \
27  spectral/test-fft \
28  spectral/test-specdesc \
29  spectral/test-phasevoc \
30  spectral/test-phasevoc-jack \
31  spectral/test-tss \
32  spectral/test-filterbank \
33  spectral/test-filterbank_mel \
34  spectral/test-mfcc \
35  utils/test-scale \
36  utils/test-hist
37
38run-tests: $(noinst_PROGRAMS)
39        @for i in $(noinst_PROGRAMS); do echo -n $$i\ ; ./$$i > /dev/null && echo OK || echo FAILED: $$?; done
40
41run-valgrind-tests: $(noinst_PROGRAMS)
42        @for i in $(noinst_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.