summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/scripts/common.sh9
-rwxr-xr-xtests/testpkcs11.sh2
2 files changed, 1 insertions, 10 deletions
diff --git a/tests/scripts/common.sh b/tests/scripts/common.sh
index 4a4add6493..40bff32323 100644
--- a/tests/scripts/common.sh
+++ b/tests/scripts/common.sh
@@ -165,15 +165,6 @@ launch_server() {
${SERV} ${DEBUG} -p "${PORT}" "$@" >${LOGFILE-/dev/null} &
}
-launch_pkcs11_server() {
- PROVIDER="$1"
- shift
-
- wait_for_free_port ${PORT}
-
- ${VALGRIND} ${SERV} ${PROVIDER} ${DEBUG} -p "${PORT}" "$@" &
-}
-
launch_bare_server() {
wait_for_free_port ${PORT}
${SERV} "$@" >${LOGFILE-/dev/null} &
diff --git a/tests/testpkcs11.sh b/tests/testpkcs11.sh
index 95b585ab6f..ccdcfbf5ce 100755
--- a/tests/testpkcs11.sh
+++ b/tests/testpkcs11.sh
@@ -900,7 +900,7 @@ use_certificate_test () {
echo -n "* Using PKCS #11 with gnutls-cli (${txt})... "
# start server
eval "${GETPORT}"
- launch_pkcs11_server "${ADDITIONAL_PARAM}" --echo --priority NORMAL --x509certfile="${certfile}" \
+ launch_server ${ADDITIONAL_PARAM} --echo --priority NORMAL --x509certfile="${certfile}" \
--x509keyfile="$keyfile" --x509cafile="${cafile}" \
--verify-client-cert --require-client-cert >>"${LOGFILE}" 2>&1