include.am 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # vim:ft=automake
  2. # included from Top Level Makefile.am
  3. # All paths should be given relative to the root
  4. if BUILD_TESTS
  5. noinst_PROGRAMS += tests/unit.test
  6. tests_unit_test_SOURCES = \
  7. tests/unit.c \
  8. tests/api.c \
  9. tests/suites.c \
  10. tests/hash.c \
  11. tests/w64wrapper.c \
  12. tests/srp.c \
  13. tests/quic.c \
  14. examples/client/client.c \
  15. examples/server/server.c
  16. tests_unit_test_CFLAGS = -DNO_MAIN_DRIVER $(AM_CFLAGS) $(WOLFSENTRY_INCLUDE)
  17. tests_unit_test_LDADD = src/libwolfssl@LIBSUFFIX@.la $(LIB_STATIC_ADD) $(WOLFSENTRY_LIB)
  18. tests_unit_test_DEPENDENCIES = src/libwolfssl@LIBSUFFIX@.la
  19. endif
  20. EXTRA_DIST += tests/unit.h \
  21. tests/test.conf \
  22. tests/test-sha2.conf \
  23. tests/test-tls13.conf \
  24. tests/test-tls13-down.conf \
  25. tests/test-tls13-ecc.conf \
  26. tests/test-tls13-psk.conf \
  27. tests/test-tls13-pq.conf \
  28. tests/test-tls13-pq-2.conf \
  29. tests/test-dtls13-pq.conf \
  30. tests/test-dtls13-pq-frag.conf \
  31. tests/test-dtls13-pq-2.conf \
  32. tests/test-dtls13-pq-2-frag.conf \
  33. tests/test-psk.conf \
  34. tests/test-psk-no-id.conf \
  35. tests/test-psk-no-id-sha2.conf \
  36. tests/test-dtls.conf \
  37. tests/test-dtls-downgrade.conf \
  38. tests/test-dtls-fails.conf \
  39. tests/test-dtls-fails-cipher.conf \
  40. tests/test-dtls-group.conf \
  41. tests/test-dtls-mtu.conf \
  42. tests/test-dtls-reneg-client.conf \
  43. tests/test-dtls-reneg-server.conf \
  44. tests/test-dtls-resume.conf \
  45. tests/test-dtls-sha2.conf \
  46. tests/test-dtls-srtp.conf \
  47. tests/test-dtls-srtp-fails.conf \
  48. tests/test-dtls13.conf \
  49. tests/test-dtls13-downgrade.conf \
  50. tests/test-dtls13-downgrade-fails.conf \
  51. tests/test-dtls13-psk.conf \
  52. tests/test-dtls13-cid.conf \
  53. tests/test-sctp.conf \
  54. tests/test-sctp-sha2.conf \
  55. tests/test-sig.conf \
  56. tests/test-rsapss.conf \
  57. tests/test-ed25519.conf \
  58. tests/test-ed448.conf \
  59. tests/test-enckeys.conf \
  60. tests/test-maxfrag.conf \
  61. tests/test-maxfrag-dtls.conf \
  62. tests/test-fails.conf \
  63. tests/test-chains.conf \
  64. tests/test-altchains.conf \
  65. tests/test-trustpeer.conf \
  66. tests/test-dhprime.conf \
  67. tests/test-p521.conf \
  68. tests/test-ecc-cust-curves.conf \
  69. tests/test-sm2.conf \
  70. tests/NCONF_test.cnf \
  71. tests/test-tls-downgrade.conf \
  72. tests/TXT_DB.txt \
  73. tests/utils.h
  74. DISTCLEANFILES+= tests/.libs/unit.test