summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2017-01-03 13:20:16 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2017-01-05 09:02:12 +0100
commit70878e6dae33ac1c60242bb161837595c91f2317 (patch)
tree2029efa3ed1ee85518b2b6acc3d974eb1b7d30b6 /tests
parentc1efb1839ae55a44022502186f3c521a97fef20d (diff)
downloadgnutls-70878e6dae33ac1c60242bb161837595c91f2317.tar.gz
tests: illegal-rsa: don't hide stderr
Diffstat (limited to 'tests')
-rwxr-xr-xtests/key-tests/illegal-rsa4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/key-tests/illegal-rsa b/tests/key-tests/illegal-rsa
index 6e7aeb80aa..aacd97e306 100755
--- a/tests/key-tests/illegal-rsa
+++ b/tests/key-tests/illegal-rsa
@@ -28,7 +28,7 @@ if ! test -z "${VALGRIND}"; then
VALGRIND="${LIBTOOL:-libtool} --mode=execute ${VALGRIND} --error-exitcode=1"
fi
-${VALGRIND} "${CERTTOOL}" -k --password 1234 --infile "${srcdir}/data/p8key-illegal.pem" 2>/dev/null
+${VALGRIND} "${CERTTOOL}" -k --password 1234 --infile "${srcdir}/data/p8key-illegal.pem"
rc=$?
# We're done.
if test "${rc}" != "1"; then
@@ -37,7 +37,7 @@ if test "${rc}" != "1"; then
fi
#check invalid RSA pem key. The key has even prime factor.
-${VALGRIND} "${CERTTOOL}" -k --infile "${srcdir}/data/key-illegal.pem" 2>/dev/null
+${VALGRIND} "${CERTTOOL}" -k --infile "${srcdir}/data/key-illegal.pem"
rc=$?
# We're done.
if test "${rc}" != "1"; then