Changeset 478767a in mod_gnutls
- Timestamp:
- Jan 9, 2020, 3:26:32 PM (3 years ago)
- Branches:
- asyncio, main, master, proxy-ticket
- Children:
- 0da2c5d
- Parents:
- ff039b1
- Location:
- test
- Files:
-
- 1 added
- 35 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/.gitignore
rff039b1 r478767a 36 36 37 37 # test programs 38 test-*.bash 38 39 gen_ocsp_index 39 40 pgpcrc -
test/Makefile.am
rff039b1 r478767a 1 1 SUBDIRS = tests 2 2 3 test_scripts = doctest-mgstest.py \ 4 test-00_basic.bash \ 3 # Generate the test scripts 4 test-%.bash: test-template.bash.in | tests/%/ 5 testname="$(*)"; sed s/@NUMBER@/$${testname%%_*}/ < $< > $@ 6 chmod a+x $@ 7 8 check_SCRIPTS = test-00_basic.bash \ 5 9 test-01_serverwide_priorities.bash \ 6 10 test-02_cache_in_vhost.bash \ … … 18 22 test-14_resume_session.bash 19 23 if USE_MSVA 20 test_scripts+= test-15_basic_msva.bash21 endif 22 test_scripts+= test-16_view-status.bash \24 check_SCRIPTS += test-15_basic_msva.bash 25 endif 26 check_SCRIPTS += test-16_view-status.bash \ 23 27 test-17_cgi_vars_large_cert.bash \ 24 28 test-18_client_verification_wrong_cert.bash \ … … 40 44 test-34_TLS_reverse_proxy_h2.bash 41 45 46 MOSTLYCLEANFILES = $(check_SCRIPTS) 47 dist_check_SCRIPTS = netns_py.bash test-template.bash.in 48 42 49 TEST_EXTENSIONS = .bash .py 43 50 PY_LOG_COMPILER = $(PYTHON) 44 TESTS = $(test_scripts) 45 46 dist_check_SCRIPTS = netns_py.bash $(test_scripts) 51 TESTS = doctest-mgstest.py $(check_SCRIPTS) 47 52 48 53 check_PROGRAMS = pgpcrc … … 106 111 check_DATA = $(tokens) authority/server/crl.pem 107 112 108 MOSTLYCLEANFILES = cache/* logs/* outputs/* authority/server/crl.pem113 MOSTLYCLEANFILES += cache/* logs/* outputs/* authority/server/crl.pem 109 114 110 115 cert_templates = authority/template.in authority/client/template.in \
Note: See TracChangeset
for help on using the changeset viewer.