diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-05-11 08:17:37 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-05-11 08:17:40 +0200 |
commit | bf1ee75f78cd81ea8309bdfb50f63ed0ab61a23a (patch) | |
tree | 6040f18ce947722fe09a686ccc856c45e5244c11 /tests/cert-tests | |
parent | 2e0fc54bb13829c54032ad763e0b38638d390d10 (diff) | |
download | gnutls-bf1ee75f78cd81ea8309bdfb50f63ed0ab61a23a.tar.gz |
tests: CRL test will not push stderr into output files
This addresses CI failures due to "Merge mismatch for function" messages
from gcov being inserted into output and messing the base64 encoding.
Diffstat (limited to 'tests/cert-tests')
-rwxr-xr-x | tests/cert-tests/crl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cert-tests/crl b/tests/cert-tests/crl index 06f626fb05..02030cb56f 100755 --- a/tests/cert-tests/crl +++ b/tests/cert-tests/crl @@ -37,7 +37,7 @@ echo "crl_number = 7" >>$TMPFILE ${VALGRIND} "${CERTTOOL}" --generate-crl --load-ca-privkey "${srcdir}/template-test.key" --load-ca-certificate \ "${srcdir}/template-test.pem" --load-certificate "${srcdir}/ca-certs.pem" --template \ - "${TMPFILE}" >${OUTFILE} 2>&1 + "${TMPFILE}" >${OUTFILE} rc=$? # We're done. @@ -56,7 +56,7 @@ fi ${VALGRIND} "${CERTTOOL}" --generate-crl --load-ca-privkey "${srcdir}/template-test.key" --load-ca-certificate \ "${srcdir}/template-test.pem" --load-crl "${OUTFILE}" --load-certificate "${srcdir}/cert-ecc256.pem" --template \ - "${TMPFILE}" -d 9 >${OUTFILE2} 2>&1 + "${TMPFILE}" -d 9 >${OUTFILE2} rc=$? # We're done. |