summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2021-04-03 15:53:16 +0200
committerDr. David von Oheimb <dev@ddvo.net>2021-04-14 19:45:45 +0200
commitb9cd82f95bf99eab4e1b0420918e7139db091c4b (patch)
treedd9957365f46014fa60a9e7668183621cda2d511 /test
parentcfe20aee3b84934271ba6ab4a054dc7a7ddebb2e (diff)
downloadopenssl-new-b9cd82f95bf99eab4e1b0420918e7139db091c4b.tar.gz
80-test_cmp_http.t: Extend diagnostics of mock server launch
Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14839)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/80-test_cmp_http.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/recipes/80-test_cmp_http.t b/test/recipes/80-test_cmp_http.t
index 62cfbc987a..bfae899040 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;
}