source: examples/tests/Makefile.am @ aa81937

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

redirect output of time to standard output stream
redirect output of time to standard output stream

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