Changeset cbc3477 in mod_gnutls
- Timestamp:
- Sep 23, 2020, 5:59:39 AM (7 months ago)
- Branches:
- asyncio
- Children:
- be2ad50
- Parents:
- 4b9e34a
- Location:
- test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/Makefile.am
r4b9e34a rcbc3477 28 28 test-10_client_verification.bash \ 29 29 test-12_cgi_variables.bash \ 30 test-14_resume_session.bash 31 if USE_MSVA 32 test_scripts += test-15_basic_msva.bash 33 endif 34 test_scripts += test-16_view-status.bash \ 30 test-14_resume_session.bash \ 31 test-15_basic_msva.bash \ 32 test-16_view-status.bash \ 35 33 test-17_cgi_vars_large_cert.bash \ 36 34 test-19_TLS_reverse_proxy.bash \ … … 318 316 export TEST_HOST="@TEST_HOST@"; \ 319 317 export TEST_PORT="$(TEST_PORT)"; \ 320 export MSVA_PORT="$(MSVA_PORT)"; \321 318 export TEST_SERVICE_MAX_WAIT="$(TEST_SERVICE_MAX_WAIT)"; \ 322 319 export TEST_SERVICE_WAIT="$(TEST_SERVICE_WAIT)"; \ … … 326 323 export TEST_HTTP_PORT="$(TEST_HTTP_PORT)"; \ 327 324 export HTTP_CLI="@HTTP_CLI@"; 325 326 if USE_MSVA 327 AM_TESTS_ENVIRONMENT += export MSVA_PORT="$(MSVA_PORT)"; 328 endif 328 329 329 330 if HAVE_SOFTHSM -
test/tests/15_basic_msva/hooks.py
r4b9e34a rcbc3477 1 1 import os 2 from unittest import SkipTest 2 3 3 4 def prepare_env(): 5 if 'MSVA_PORT' not in os.environ: 6 raise SkipTest('Build without MSVA support.') 4 7 os.environ['USE_MSVA'] = 'yes'
Note: See TracChangeset
for help on using the changeset viewer.