]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
tests: do not suppress stderr errors on servers startup
authorNikos Mavrogiannopoulos <nmav@redhat.com>
Fri, 18 Aug 2017 08:05:36 +0000 (10:05 +0200)
committerNikos Mavrogiannopoulos <nmav@redhat.com>
Fri, 18 Aug 2017 08:07:10 +0000 (10:07 +0200)
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
tests/scripts/common.sh

index 9dae0b47b9cc46f83002ffc868c462fb3bcc0567..5addc9cbc5805bb9241e1d61da257a3b336c41a0 100644 (file)
@@ -137,7 +137,7 @@ launch_server() {
        shift
 
        wait_for_free_port ${PORT}
-       ${SERV} ${DEBUG} -p "${PORT}" $* >/dev/null 2>&1 &
+       ${SERV} ${DEBUG} -p "${PORT}" $* >/dev/null &
 }
 
 launch_pkcs11_server() {
@@ -156,7 +156,7 @@ launch_bare_server() {
        shift
 
        wait_for_free_port ${PORT}
-       ${SERV} $* >/dev/null 2>&1 &
+       ${SERV} $* >/dev/null &
 }
 
 wait_server() {