source: tests/cpp/Makefile.am @ f603b57

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

added simple tests in tests/cpp for cpp interface draft

  • Property mode set to 100644
File size: 525 bytes
Line 
1AM_CXXFLAGS = -I$(top_srcdir)/cpp -I$(top_srcdir)/src
2AM_LDFLAGS = -L$(top_builddir)/cpp -laubiocpp -L$(top_builddir)/src -laubio @FFTWLIB_LIBS@
3
4bin_PROGRAMS = \
5        test-fvec \
6        test-cvec
7
8test_fvec_SOURCES = test-fvec.cpp
9test_cvec_SOURCES = test-cvec.cpp
10
11run-tests: $(bin_PROGRAMS)
12        @for i in $(bin_PROGRAMS); do echo $$i; ((time ./$$i 2>&1 > /dev/null) 2>&1; echo $$?); done
13
14run-valgrind-tests: $(bin_PROGRAMS)
15        @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.