Mercurial > hg > qm-dsp
comparison tests/Makefile @ 119:2020c73dc997 pvoc
Phase vocoder: provide time-domain and freq-domain inputs separately; update tests etc
author | Chris Cannam |
---|---|
date | Thu, 03 Oct 2013 12:58:36 +0100 |
parents | fac40444b8c3 |
children | a37635bbb2c1 |
comparison
equal
deleted
inserted
replaced
118:4920d100b290 | 119:2020c73dc997 |
---|---|
6 LIBS := ../libqm-dsp.a | 6 LIBS := ../libqm-dsp.a |
7 | 7 |
8 TESTS := test-window test-fft test-pvoc | 8 TESTS := test-window test-fft test-pvoc |
9 | 9 |
10 all: $(TESTS) | 10 all: $(TESTS) |
11 for t in $(TESTS); do echo "Running $$t"; ./"$$t" || exit 1; done | 11 for t in $(TESTS); do echo "Running $$t"; valgrind ./"$$t" || exit 1; done |
12 | 12 |
13 test-window: TestWindow.o $(LIBS) | 13 test-window: TestWindow.o $(LIBS) |
14 $(CXX) -o $@ $^ $(LDFLAGS) | 14 $(CXX) -o $@ $^ $(LDFLAGS) |
15 | 15 |
16 test-fft: TestFFT.o $(LIBS) | 16 test-fft: TestFFT.o $(LIBS) |