Changeset 33af2b7 in mod_gnutls for test/test-24_pkcs11_cert.bash
- Timestamp:
- May 11, 2015, 6:28:20 PM (6 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, proxy-ticket, upstream
- Children:
- 31caead
- Parents:
- e24eed68
- git-author:
- Thomas Klute <thomas2.klute@…> (05/11/15 18:12:28)
- git-committer:
- Thomas Klute <thomas2.klute@…> (05/11/15 18:28:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/test-24_pkcs11_cert.bash
re24eed68 r33af2b7 1 1 #!/bin/bash 2 2 3 testdir="./tests/24_pkcs11_cert" 4 . ./softhsm.bash 3 testdir="$(dirname ${0})/tests/24_pkcs11_cert" 4 5 # The Apache/SoftHSM configuration mixes up directories, so generate a 6 # config file with an absolute path to the token database from a 7 # template. Generating it on every run avoids problems if the source 8 # tree was moved. 9 tmp_softhsm_conf="$(mktemp mod_gnutls_test-XXXXXX.conf)" 10 function cleanup_tmpconf 11 { 12 rm "${tmp_softhsm_conf}" 13 } 14 trap cleanup_tmpconf EXIT 15 16 sed "s,__DIR__,$(realpath $(pwd))," \ 17 "${testdir}/softhsm.conf.in" \ 18 >"${tmp_softhsm_conf}" 19 export SOFTHSM_CONF="${tmp_softhsm_conf}" 20 echo "Generated temporary SoftHSM config ${tmp_softhsm_conf}:" 21 cat "${tmp_softhsm_conf}" 22 23 . $(dirname ${0})/softhsm.bash 5 24 6 25 set -e 7 26 8 make -f TestMakefile t-24 27 make -f $(dirname ${0})/TestMakefile t-24 28 29 cleanup_tmpconf 30 trap - EXIT
Note: See TracChangeset
for help on using the changeset viewer.