debian/masterdebian/stretch-backportsjessie-backportsupstream
Last change
on this file since 73b0bf0 was
34e5dc7,
checked in by Thomas Klute <thomas2.klute@…>, 4 years ago
|
Test suite: Call "runtests" directly from test scripts
The test scripts used to call runtests through TestMakefile?, which set
up the environment. Moving the environment configuration to
AM_TESTS_ENVIRONMENT in Makefile.am avoids this additional call to
make.
TEST_GAP has been renamed to TEST_MSVA_WAIT because the sleep time in
the MSVA startup loop is its only remaining use.
|
-
Property mode set to
100755
|
File size:
751 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
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 |
---|
24 | |
---|
25 | set -e |
---|
26 | |
---|
27 | ${srcdir}/runtests t-24 |
---|
28 | |
---|
29 | cleanup_tmpconf |
---|
30 | trap - EXIT |
---|
Note: See
TracBrowser
for help on using the repository browser.