From: Dr. David von Oheimb Date: Sat, 3 Apr 2021 12:25:54 +0000 (+0200) Subject: 80-test_cmp_http.t: Fix resumption when skipping after mock server launch failed X-Git-Tag: openssl-3.0.0-alpha15~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6df354c2a2295ed120161a5a183e885df3ae1a6;p=thirdparty%2Fopenssl.git 80-test_cmp_http.t: Fix resumption when skipping after mock server launch failed 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 80cb6a4122a..a8adaad96b4 100644 --- a/test/recipes/80-test_cmp_http.t +++ b/test/recipes/80-test_cmp_http.t @@ -180,6 +180,7 @@ indir data_dir() => sub { $server_name = chop_dblquot($server_name); load_config($server_name, $server_name); { + SKIP: { my $pid; if ($server_name eq "Mock") { indir "Mock" => sub { @@ -198,6 +199,7 @@ indir data_dir() => sub { }; }; stop_mock_server($pid) if $pid; + } } }; };