Skip to content

Commit b72a0a5

Browse files
authored
Disable memory tests (#2480)
Suspected culprit of #2478 based on a Gradle build scan.
1 parent d373357 commit b72a0a5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/test/java/org/mockito/PrematureGarbageCollectionTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
*/
55
package org.mockito;
66

7+
import org.junit.Ignore;
78
import org.junit.Test;
89

10+
@Ignore("https://github.com/mockito/mockito/issues/2478")
911
public class PrematureGarbageCollectionTest {
1012

1113
@Test

subprojects/memory-test/src/test/java/org/mockito/memorytest/ShouldNotStarveMemoryOnLargeStackTraceInvocationsTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@
1010
import static org.mockito.Mockito.when;
1111

1212
import org.junit.Assume;
13+
import org.junit.Ignore;
1314
import org.junit.Test;
1415

16+
@Ignore("https://github.com/mockito/mockito/issues/2478")
1517
public class ShouldNotStarveMemoryOnLargeStackTraceInvocationsTest {
1618

1719
private static final int STACK_TRACE_DEPTH = 1000;

0 commit comments

Comments
 (0)