Changeset c4ba2b60 in mod_gnutls
- Timestamp:
- Jan 27, 2020, 2:25:53 AM (3 years ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- c5f8e85
- Parents:
- c05b8c5
- git-author:
- Fiona Klute <fiona.klute@…> (01/27/20 02:24:39)
- git-committer:
- Fiona Klute <fiona.klute@…> (01/27/20 02:25:53)
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
.github/workflows/build.yml
rc05b8c5 rc4ba2b60 78 78 run: | 79 79 echo "Mutex sem default" >test/apache-conf/github_mutex.conf 80 - name: configure extra modules needed for Fedora81 run: |82 cat - >test/apache-conf/fedora.conf <<EOF83 LoadModule log_config_module \${AP_LIBEXECDIR}/mod_log_config.so84 LoadModule logio_module \${AP_LIBEXECDIR}/mod_logio.so85 LoadModule unixd_module \${AP_LIBEXECDIR}/mod_unixd.so86 EOF87 80 - name: make check 88 81 run: VERBOSE=1 make check -
test/.gitignore
rc05b8c5 rc4ba2b60 3 3 proxy_backend.conf 4 4 ocsp_server.conf 5 apache-conf/required-modules.conf 5 6 authority/template 6 7 authority/client/uid -
test/Makefile.am
rc05b8c5 rc4ba2b60 67 67 noinst_PYTHON = https-test-client.py mgstest/http.py mgstest/__init__.py \ 68 68 mgstest/hooks.py mgstest/services.py mgstest/softhsm.py \ 69 mgstest/tests.py runtest.py softhsm-init.py doctest-mgstest.py 69 mgstest/tests.py runtest.py softhsm-init.py doctest-mgstest.py \ 70 required-modules.py 70 71 71 72 # Identities in the miniature CA, server, and client environment for … … 251 252 data/test.txt data/secret/mirror.cgi data/secret/test.txt \ 252 253 mime.types proxy_mods.conf 254 255 # Which modules are compiled into the Apache binary varies between 256 # distributions. required-modules.py creates additional LoadModule 257 # directives if needed. 258 check_DATA += apache-conf/required-modules.conf 259 MOSTLYCLEANFILES += apache-conf/required-modules.conf 260 apache-conf/required-modules.conf: required-modules.py 261 APACHE2=$(APACHE2) $(PYTHON) $< >$@ 253 262 254 263 # Documentation for the test system
Note: See TracChangeset
for help on using the changeset viewer.