[8f90bf4] | 1 | check_SCRIPTS = test-00_basic.bash \ |
---|
[c51e33a] | 2 | test-01_serverwide_priorities.bash \ |
---|
| 3 | test-02_cache_in_vhost.bash \ |
---|
| 4 | test-03_cachetimeout_in_vhost.bash \ |
---|
| 5 | test-04_basic_nosni.bash \ |
---|
| 6 | test-05_mismatched-priorities.bash \ |
---|
| 7 | test-06_verify_sni_a.bash \ |
---|
| 8 | test-07_verify_sni_b.bash \ |
---|
| 9 | test-08_verify_no_sni_fallback_to_first_vhost.bash \ |
---|
| 10 | test-09_verify_no_sni_fails_with_wrong_order.bash \ |
---|
| 11 | test-10_basic_client_verification.bash \ |
---|
| 12 | test-11_basic_client_verification_fail.bash \ |
---|
| 13 | test-12_cgi_variables.bash \ |
---|
| 14 | test-13_cgi_variables_no_client_cert.bash \ |
---|
[65c18ce] | 15 | test-14_basic_openpgp.bash |
---|
| 16 | if USE_MSVA |
---|
[8f90bf4] | 17 | check_SCRIPTS += test-15_basic_msva.bash |
---|
[65c18ce] | 18 | endif |
---|
[8f90bf4] | 19 | check_SCRIPTS += test-16_view-status.bash \ |
---|
[eea8a16] | 20 | test-17_cgi_vars_large_cert.bash \ |
---|
[6e6a4e4] | 21 | test-18_client_verification_wrong_cert.bash \ |
---|
[ed82a6a] | 22 | test-19_TLS_reverse_proxy.bash \ |
---|
| 23 | test-20_TLS_reverse_proxy_client_auth.bash \ |
---|
[907ae8f] | 24 | test-21_TLS_reverse_proxy_wrong_cert.bash \ |
---|
[f030883] | 25 | test-22_TLS_reverse_proxy_crl_revoke.bash \ |
---|
| 26 | test-23_TLS_reverse_proxy_mismatched_priorities.bash |
---|
[5951102] | 27 | |
---|
[8f90bf4] | 28 | TESTS = $(check_SCRIPTS) |
---|
| 29 | |
---|
[39bd695] | 30 | # Test cases trying to create keys and certificates in parallel causes |
---|
| 31 | # race conditions. Ensure that all keys and certificates are generated |
---|
| 32 | # before tests get to run. |
---|
| 33 | # |
---|
| 34 | # NOTE: Once the support files have been generated, test cases can be |
---|
| 35 | # run with multiple jobs, but real parallelization would require |
---|
| 36 | # dynamic port assignments. At the moment, lock files ensure that only |
---|
| 37 | # one Apache instance (possibly plus a proxy back end instance) is |
---|
| 38 | # running at any time, so test cases actually have to wait for each |
---|
| 39 | # other - just not in any particular order. |
---|
| 40 | check_DATA = setup.done |
---|
| 41 | |
---|
| 42 | # Sadly, TestMakefile breaks when trying to generate keys and |
---|
| 43 | # certificates with parallel make. Until that's fixed, enforce "-j1". |
---|
| 44 | setup.done: |
---|
| 45 | $(MAKE) -f TestMakefile $(AM_MAKEFLAGS) -j1 $@ |
---|
| 46 | |
---|
[1708045] | 47 | MOSTLYCLEANFILES = cache/* logs/* outputs/* |
---|
| 48 | |
---|
[5951102] | 49 | clean-local: |
---|
[1708045] | 50 | $(MAKE) -f TestMakefile $(AM_MAKEFLAGS) clean |
---|