From f71035edb059cf4bded7e77da2af24ab3a29b9b8 Mon Sep 17 00:00:00 2001 From: Frederik Wedel-Heinen Date: Fri, 26 Jan 2024 12:14:57 +0100 Subject: [PATCH] Don't run dtls test on windows. Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/23319) --- test/recipes/70-test_dtlsrecords.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/recipes/70-test_dtlsrecords.t b/test/recipes/70-test_dtlsrecords.t index 99ce1128c0..dc223ea759 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"); -- 2.34.1