Remove console line before printing debugging and on exit

This commit is contained in:
Andreas Eversberg
2016-07-24 09:12:54 +02:00
parent 123979a0f3
commit c273bbc5ff
6 changed files with 44 additions and 8 deletions

View File

@@ -14,28 +14,33 @@ test_compandor_LDADD = \
$(top_builddir)/src/common/libcommon.a \
-lm
test_emphasis_SOURCES = test_emphasis.c
test_emphasis_SOURCES = test_emphasis.c dummy.c
test_emphasis_LDADD = \
$(COMMON_LA) \
$(top_builddir)/src/common/libcommon.a \
$(ALSA_LIBS) \
-lm
test_dms_SOURCES = \
$(top_builddir)/src/nmt/dms.c \
test_dms.c
test_dms.c \
dummy.c
test_dms_LDADD = \
$(COMMON_LA) \
$(top_builddir)/src/common/libcommon.a \
$(ALSA_LIBS) \
-lm
test_sms_SOURCES = \
$(top_builddir)/src/nmt/sms.c \
dummy.c \
test_sms.c
test_sms_LDADD = \
$(COMMON_LA) \
$(top_builddir)/src/common/libcommon.a \
$(ALSA_LIBS) \
-lm

8
src/test/dummy.c Normal file
View File

@@ -0,0 +1,8 @@
void call_rx_audio() { }
void call_out_setup() { }
void call_out_release() { }
void call_out_disconnect() { }
void print_help() { }
void sender_send() { }
void sender_receive() { }