From: Nikos Mavrogiannopoulos Date: Fri, 19 Jun 2015 19:53:27 +0000 (+0200) Subject: tests: don't quote provider in common.sh X-Git-Tag: gnutls_3_4_3~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77a1a7b3fc0223091c2b81d159778cca3e9f7cd4;p=thirdparty%2Fgnutls.git tests: don't quote provider in common.sh That caused testpkcs11 to fail. --- diff --git a/tests/scripts/common.sh b/tests/scripts/common.sh index 3ccfc03797..fd6588d52f 100644 --- a/tests/scripts/common.sh +++ b/tests/scripts/common.sh @@ -48,7 +48,7 @@ launch_pkcs11_server() { shift PROVIDER="$1" shift - ${VALGRIND} ${SERV} "${PROVIDER}" ${DEBUG} -p "${PORT}" $* & + ${VALGRIND} ${SERV} ${PROVIDER} ${DEBUG} -p "${PORT}" $* & LOCALPID="$!" trap "[ ! -z \"${LOCALPID}\" ] && kill ${LOCALPID};" 15 wait "${LOCALPID}"