Changeset c91382d in mod_gnutls
- Timestamp:
- Jun 6, 2019, 2:38:35 AM (21 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- a819501
- Parents:
- 143bd98
- Location:
- test
- Files:
-
- 3 edited
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
test/Makefile.am
r143bd98 rc91382d 113 113 # (e.g. host names) without wasting time on new keys (which would 114 114 # happen after "clean"). 115 MOSTLYCLEANFILES += */x509.pem $(generated_templates) * .uid115 MOSTLYCLEANFILES += */x509.pem $(generated_templates) */uid 116 116 117 117 … … 145 145 if USE_MSVA 146 146 msva_home = msva.gnupghome 147 check_DATA += $(msva_home)/trustdb.gpg client .uid147 check_DATA += $(msva_home)/trustdb.gpg client/uid 148 148 MOSTLYCLEANFILES += $(msva_home)/trustdb.gpg 149 149 $(msva_home)/trustdb.gpg: authority/minimal.pgp client/cert.pgp … … 215 215 # stops. 216 216 clean-local: 217 -rmdir $(identities) || true218 217 -rmdir $(extra_dirs) || true 219 218 if USE_MSVA … … 232 231 proxy_mods.conf 233 232 234 EXTRA_DIST = $(apache_data) $(cert_templates) $(shared_identities:= .uid.in) \233 EXTRA_DIST = $(apache_data) $(cert_templates) $(shared_identities:=/uid.in) \ 235 234 apache_service.bash common.bash runtests server-crl.template \ 236 235 softhsm.bash -
test/runtests
r143bd98 rc91382d 139 139 export MONKEYSPHERE_VALIDATION_AGENT_SOCKET="http://127.0.0.1:$MSVA_PORT" 140 140 141 msva_test_cmd="msva-query-agent https \"$(cat client .uid)\" x509pem client < client/x509.pem"141 msva_test_cmd="msva-query-agent https \"$(cat client/uid)\" x509pem client < client/x509.pem" 142 142 # check if MSVA is up, fail if not 143 143 if wait_ready "${msva_test_cmd}"; then -
test/test_ca.mk
r143bd98 rc91382d 15 15 sed -i -e "s,__IP_ADDRESSES__,$${IP_ADDRS#\\n}," $@ 16 16 17 % .uid: $(srcdir)/%.uid.in17 %/uid: $(srcdir)/%/uid.in 18 18 sed s/__HOSTNAME__/$(TEST_HOST)/ < $< > $@ 19 19 … … 25 25 .PRECIOUS: %/secret.key 26 26 27 %/secret.pgp.raw: % .uid %/secret.key27 %/secret.pgp.raw: %/uid %/secret.key 28 28 PEM2OPENPGP_USAGE_FLAGS=authenticate,certify,sign pem2openpgp "$$(cat $<)" < $(dir $@)secret.key > $@ 29 29
Note: See TracChangeset
for help on using the changeset viewer.