Changeset dc884574f797d86b9721295436acc69dcc10ee53
- 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
| rb0f4597 |
rdc88457 |
|
| 28 | 28 | if HAVE_LIBGCRYPT |
|---|
| 29 | 29 | noinst_LTLIBRARIES = libvlc_srtp.la |
|---|
| 30 | | check_PROGRAMS = test-aes |
|---|
| 31 | | TESTS = test-aes |
|---|
| | 30 | check_PROGRAMS = test-aes test-recv |
|---|
| | 31 | TESTS = $(check_PROGRAMS) |
|---|
| 32 | 32 | endif |
|---|
| 33 | 33 | |
|---|
| 34 | 34 | libvlc_srtp_la_SOURCES = srtp.c |
|---|
| 35 | | test_aes_SOURCES = test-aes.c |
|---|
| 36 | 35 | srtp_SOURCES = recv.c |
|---|
| 37 | 36 | srtp_LDADD = libvlc_srtp.la |
|---|
| | 37 | test_recv_LDADD = libvlc_srtp.la |
|---|
| 38 | 38 | |
|---|
| 39 | 39 | lcov-run: |
|---|
| 40 | | rm -f *.gcda lcov |
|---|
| | 40 | rm -Rf *.gcda lcov |
|---|
| 41 | 41 | $(MAKE) $(AM_MAKEFLAGS) check |
|---|
| 42 | 42 | |
|---|