Changeset dc884574f797d86b9721295436acc69dcc10ee53

Show
Ignore:
Timestamp:
05/17/07 20:37:44 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1179427064 +0000
git-parent:

[2a0e2bd242f7dc7cda4ee096e58f42d13db9803f]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1179427064 +0000
Message:

Add real SRTP unit test (85% coverage let alone SRTCP)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • libs/srtp/Makefile.am

    rb0f4597 rdc88457  
    2828if HAVE_LIBGCRYPT 
    2929noinst_LTLIBRARIES = libvlc_srtp.la 
    30 check_PROGRAMS = test-aes 
    31 TESTS = test-aes 
     30check_PROGRAMS = test-aes test-recv 
     31TESTS = $(check_PROGRAMS) 
    3232endif 
    3333 
    3434libvlc_srtp_la_SOURCES = srtp.c 
    35 test_aes_SOURCES = test-aes.c 
    3635srtp_SOURCES = recv.c 
    3736srtp_LDADD = libvlc_srtp.la 
     37test_recv_LDADD = libvlc_srtp.la 
    3838 
    3939lcov-run: 
    40     rm -f *.gcda lcov 
     40    rm -Rf *.gcda lcov 
    4141    $(MAKE) $(AM_MAKEFLAGS) check 
    4242