We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ec927 commit 851465fCopy full SHA for 851465f
1 file changed
src/test/com/wolfssl/provider/jsse/test/WolfSSLEngineMemoryLeakTest.java
@@ -50,10 +50,13 @@
50
public class WolfSSLEngineMemoryLeakTest {
51
52
/**
53
- * Global timeout for all tests in this class.
+ * Global timeout for all tests in this class. The 500-engine test
54
+ * plus multiple GC/finalization rounds can run 60+ seconds on slower
55
+ * platforms (notably Windows with FIPS enabled), so 180s leaves
56
+ * comfortable headroom while still catching genuine hangs.
57
*/
58
@Rule
- public Timeout globalTimeout = new Timeout(60, TimeUnit.SECONDS);
59
+ public Timeout globalTimeout = new Timeout(180, TimeUnit.SECONDS);
60
61
@BeforeClass
62
public static void setupProvider() {
0 commit comments