File 1289-Fix-test-timeouts-for-all-tests.patch of Package erlang
From 51496812647d322fca4e9a64e32dd054036b69bf Mon Sep 17 00:00:00 2001
From: Dan Gudmundsson <dgud@erlang.org>
Date: Tue, 29 Apr 2025 09:50:49 +0200
Subject: [PATCH 2/2] Fix test timeouts for all tests
---
lib/ssl/test/ssl_crl_SUITE.erl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/ssl/test/ssl_crl_SUITE.erl b/lib/ssl/test/ssl_crl_SUITE.erl
index a2e568aad4..9eca84eb3a 100644
--- a/lib/ssl/test/ssl_crl_SUITE.erl
+++ b/lib/ssl/test/ssl_crl_SUITE.erl
@@ -57,7 +57,7 @@
crl_hash_dir_expired/1,
delete_crl_with_path/1]).
--define(TIMEOUT, {seconds, 30}).
+-define(TIMEOUT, {seconds, 15}).
%%--------------------------------------------------------------------
%% Common Test interface functions -----------------------------------
@@ -206,6 +206,7 @@ init_per_testcase(Case, Config0) ->
{skip, "Unable to create IDP crls"}
end;
false ->
+ ct:timetrap(?TIMEOUT),
end_per_testcase(Case, Config0),
ssl_test_lib:clean_start(),
Config0
--
2.43.0