1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-03-09 23:38:56 +00:00

test: add wpas tests

Add extensive test-suite to verify our wpas-helpers work correctly.

Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
This commit is contained in:
David Herrmann 2014-03-19 13:06:11 +01:00
parent f34face988
commit b0b53f986c
3 changed files with 806 additions and 1 deletions

View file

@ -154,7 +154,8 @@ miracled_LDFLAGS = $(AM_LDFLAGS)
# Tests
#
tests =
tests = \
test_wpas
if BUILD_HAVE_CHECK
check_PROGRAMS += $(tests)
@ -174,6 +175,11 @@ test_cflags = \
test_lflags = \
$(AM_LDFLAGS)
test_wpas_SOURCES = test/test_wpas.c $(test_sources)
test_wpas_CPPFLAGS = $(test_cflags)
test_wpas_LDADD = $(test_libs)
test_wpas_LDFLAGS = $(test_lflags)
#
# Phony targets
#