From: Dr. David von Oheimb Date: Sat, 3 Apr 2021 13:53:16 +0000 (+0200) Subject: 80-test_cmp_http.t: Extend diagnostics of mock server launch X-Git-Tag: openssl-3.0.0-alpha15~98 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b9cd82f95bf99eab4e1b0420918e7139db091c4b;p=thirdparty%2Fopenssl.git 80-test_cmp_http.t: Extend diagnostics of mock server launch Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/14839) --- diff --git a/test/recipes/80-test_cmp_http.t b/test/recipes/80-test_cmp_http.t index 62cfbc987a1..bfae899040b 100644 --- a/test/recipes/80-test_cmp_http.t +++ b/test/recipes/80-test_cmp_http.t @@ -279,7 +279,8 @@ sub start_mock_server { print "Mock server already running with pid=$pid\n"; return $pid; } - print "Launching mock server: $cmd\n"; + print "Current directory is ".getcwd()."\n"; + print "Launching mock server listening on port $server_port: $cmd\n"; return system("$cmd &") == 0 # start in background, check for success ? (sleep 1, mock_server_pid()) : 0; }