2011-12-14 09:20:46 -08:00
|
|
|
# vim:ft=automake
|
|
|
|
# included from Top Level Makefile.am
|
|
|
|
# All paths should be given relative to the root
|
|
|
|
|
|
|
|
|
2016-02-26 15:30:11 +01:00
|
|
|
if BUILD_TESTS
|
2014-03-06 21:34:33 -08:00
|
|
|
check_PROGRAMS += tests/unit.test
|
|
|
|
noinst_PROGRAMS += tests/unit.test
|
|
|
|
tests_unit_test_SOURCES = \
|
2012-11-01 12:36:47 -07:00
|
|
|
tests/unit.c \
|
|
|
|
tests/api.c \
|
|
|
|
tests/suites.c \
|
2012-08-06 17:14:31 -07:00
|
|
|
tests/hash.c \
|
2015-07-07 12:01:47 -03:00
|
|
|
tests/srp.c \
|
2012-11-01 12:36:47 -07:00
|
|
|
examples/client/client.c \
|
|
|
|
examples/server/server.c
|
2014-03-06 21:34:33 -08:00
|
|
|
tests_unit_test_CFLAGS = -DNO_MAIN_DRIVER $(AM_CFLAGS)
|
2015-09-28 10:06:30 -06:00
|
|
|
tests_unit_test_LDADD = src/libwolfssl.la $(LIB_STATIC_ADD)
|
2014-12-29 10:27:03 -07:00
|
|
|
tests_unit_test_DEPENDENCIES = src/libwolfssl.la
|
2012-11-29 11:31:57 -08:00
|
|
|
endif
|
2012-08-03 23:19:24 -07:00
|
|
|
EXTRA_DIST += tests/unit.h
|
2012-08-07 17:01:59 -07:00
|
|
|
EXTRA_DIST += tests/test.conf \
|
2016-11-24 01:31:07 +10:00
|
|
|
tests/test-tls13.conf \
|
2018-05-17 09:08:03 +10:00
|
|
|
tests/test-tls13-down.conf \
|
2017-10-20 11:24:20 +10:00
|
|
|
tests/test-tls13-ecc.conf \
|
2018-05-17 09:08:03 +10:00
|
|
|
tests/test-tls13-psk.conf \
|
2015-08-03 09:32:51 -07:00
|
|
|
tests/test-qsh.conf \
|
2018-05-17 09:08:03 +10:00
|
|
|
tests/test-psk.conf \
|
2015-08-03 09:32:51 -07:00
|
|
|
tests/test-psk-no-id.conf \
|
2016-02-11 13:49:07 -07:00
|
|
|
tests/test-dtls.conf \
|
2016-12-21 14:24:20 -08:00
|
|
|
tests/test-sctp.conf \
|
2017-06-22 14:14:45 -06:00
|
|
|
tests/test-sig.conf \
|
2018-04-05 12:43:03 -07:00
|
|
|
tests/test-ed25519.conf \
|
2018-05-03 09:40:51 -07:00
|
|
|
tests/test-enckeys.conf \
|
2018-10-16 16:47:24 -07:00
|
|
|
tests/test-maxfrag.conf \
|
|
|
|
tests/test-maxfrag-dtls.conf \
|
2018-05-03 09:40:51 -07:00
|
|
|
tests/test-fails.conf
|
2014-03-06 21:34:33 -08:00
|
|
|
DISTCLEANFILES+= tests/.libs/unit.test
|