include.am 1.7 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_SNIFFTEST
  5. dist_noinst_SCRIPTS+= scripts/sniffer-testsuite.test
  6. endif
  7. if BUILD_EXAMPLE_SERVERS
  8. dist_noinst_SCRIPTS+= scripts/resume.test
  9. EXTRA_DIST+= scripts/benchmark.test
  10. if BUILD_CRL
  11. # make revoked test rely on completion of resume test
  12. dist_noinst_SCRIPTS+= scripts/crl-revoked.test
  13. scripts/crl-revoked.log: scripts/resume.log
  14. endif
  15. if BUILD_OCSP
  16. dist_noinst_SCRIPTS+= scripts/ocsp.test
  17. endif
  18. if BUILD_OCSP_STAPLING
  19. dist_noinst_SCRIPTS+= scripts/ocsp-stapling.test
  20. scripts/ocsp-stapling.log: scripts/ocsp.log
  21. dist_noinst_SCRIPTS+= scripts/ocsp-stapling-with-ca-as-responder.test
  22. scripts/ocsp-stapling-with-ca-as-responder.log: scripts/ocsp-stapling.log
  23. endif
  24. if BUILD_OCSP_STAPLING_V2
  25. dist_noinst_SCRIPTS+= scripts/ocsp-stapling2.test
  26. if BUILD_OCSP_STAPLING
  27. scripts/ocsp-stapling2.log: scripts/ocsp-stapling-with-ca-as-responder.log
  28. else
  29. scripts/ocsp-stapling2.log: scripts/ocsp.log
  30. endif
  31. endif
  32. if BUILD_PSK
  33. dist_noinst_SCRIPTS+= scripts/psk.test
  34. endif
  35. if BUILD_TRUST_PEER_CERT
  36. dist_noinst_SCRIPTS+= scripts/trusted_peer.test
  37. endif
  38. if BUILD_PKCALLBACKS
  39. dist_noinst_SCRIPTS+= scripts/pkcallbacks.test
  40. scripts/pkcallbacks.log: scripts/resume.log
  41. endif
  42. if BUILD_TLS13
  43. dist_noinst_SCRIPTS+= scripts/tls13.test
  44. endif
  45. endif # end of BUILD_EXAMPLE_SERVERS
  46. if BUILD_EXAMPLE_CLIENTS
  47. if !BUILD_IPV6
  48. dist_noinst_SCRIPTS+= scripts/external.test
  49. dist_noinst_SCRIPTS+= scripts/google.test
  50. dist_noinst_SCRIPTS+= scripts/openssl.test
  51. endif
  52. endif
  53. EXTRA_DIST += scripts/testsuite.pcap \
  54. scripts/ping.test
  55. # leave openssl.test as extra until non bash works
  56. EXTRA_DIST += scripts/openssl.test