diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-08-18 10:05:36 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-08-18 10:07:10 +0200 |
commit | 41249f5b65ce9a15e6f2da70dbaf4476f3f94f2f (patch) | |
tree | 3a473ad9afa8824abb3dca1818cf117c81609c33 /tests/scripts | |
parent | e412603286eb17293f432654f482e679f104abef (diff) | |
download | gnutls-41249f5b65ce9a15e6f2da70dbaf4476f3f94f2f.tar.gz |
tests: do not suppress stderr errors on servers startup
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'tests/scripts')
-rw-r--r-- | tests/scripts/common.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scripts/common.sh b/tests/scripts/common.sh index 9dae0b47b9..5addc9cbc5 100644 --- a/tests/scripts/common.sh +++ b/tests/scripts/common.sh @@ -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() { |