From: Frederik Wedel-Heinen Date: Fri, 26 Jan 2024 11:14:57 +0000 (+0100) Subject: Don't run dtls test on windows. X-Git-Tag: openssl-3.3.0-alpha1~137 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f71035edb059cf4bded7e77da2af24ab3a29b9b8;p=thirdparty%2Fopenssl.git Don't run dtls test on windows. Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/23319) --- diff --git a/test/recipes/70-test_dtlsrecords.t b/test/recipes/70-test_dtlsrecords.t index 99ce1128c0b..dc223ea7594 100644 --- a/test/recipes/70-test_dtlsrecords.t +++ b/test/recipes/70-test_dtlsrecords.t @@ -18,7 +18,7 @@ my $test_name = "test_dtlsrecords"; setup($test_name); plan skip_all => "TLSProxy isn't usable on $^O" - if $^O =~ /^(VMS)$/; + if $^O =~ /^(VMS|MSWin32)$/; plan skip_all => "$test_name needs the dynamic engine feature enabled" if disabled("engine") || disabled("dynamic-engine");