1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
include ../globals.mak
TESTS_ENVIRONMENT = CODECS_PATH="$(top_builddir)/src/audio/codecs"
check_PROGRAMS = test
TESTS = run_tests.sh
test_CXXFLAGS = -DWORKSPACE="$(top_srcdir)/test/"
test_LDADD = $(top_builddir)/src/libsflphone.la @ZRTPCPP_LIBS@ @LIBCRYPTO_LIBS@ @CPPUNIT_LIBS@ @YAML_LIBS@
EXTRA_DIST = sflphoned-sample.yml history-sample.tpl run_tests.sh
test_SOURCES = constants.h \
test_utils.h \
main.cpp \
validator.h \
validator.cpp \
accounttest.h \
accounttest.cpp \
audiolayertest.h \
audiolayertest.cpp \
configurationtest.h \
configurationtest.cpp \
historytest.h \
historytest.cpp \
numbercleanertest.h \
numbercleanertest.cpp \
sdesnegotiatortest.h \
sdesnegotiatortest.cpp \
instantmessagingtest.h \
instantmessagingtest.cpp \
siptest.h \
siptest.cpp \
sdptest.h \
sdptest.cpp \
echocanceltest.h \
echocanceltest.cpp \
gaincontroltest.h \
gaincontroltest.cpp \
mainbuffertest.h \
mainbuffertest.cpp \
resamplertest.h \
resamplertest.cpp
clean-local:
rm -rf cppunitresults.xml im:testfile1.txt im:testfile2.txt \
sample_echocancel_500ms_8kHz_16bit.raw
|