]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
tests: Log output of gnutls-serv during the tests.
authorSimon Ruderich <simon@ruderich.org>
Thu, 2 Jan 2014 15:00:00 +0000 (16:00 +0100)
committerSimon Ruderich <simon@ruderich.org>
Thu, 2 Jan 2014 15:00:00 +0000 (16:00 +0100)
Also increase the debug level.

tests/common.sh

index 3649f71cb9d4b469370d65a0fe5d57a3d50949cc..c7cb7d1631cf8ff04f7894d2cd7253713411faf5 100644 (file)
@@ -27,7 +27,7 @@ trap 'abort SIGINT' INT
 
 cleanup() {
     rm -f \
-        tmp tlsproxy-log \
+        tmp tlsproxy-log gnutls-serv-log \
         certificate-localhost-proxy.pem certificate-localhost-server.pem
 }
 stop_servers() {
@@ -66,11 +66,11 @@ tlsproxy_add() {
 }
 tlsproxy_background() {
     #valgrind --leak-check=full --error-exitcode=1 --track-fds=yes \
-    ../src/tlsproxy -d2 "$@" >tlsproxy-log 2>&1 &
+    ../src/tlsproxy -d3 "$@" >tlsproxy-log 2>&1 &
     pid_tlsproxy=$!
 }
 server_background() {
-    gnutls-serv --http --port 4712 "$@" >/dev/null 2>&1 &
+    gnutls-serv --http --port 4712 --debug 10 "$@" >gnutls-serv-log 2>&1 &
     pid_server=$!
 }
 client() {