Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable memory test #2480

Merged
merged 2 commits into from Nov 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/test/java/org/mockito/PrematureGarbageCollectionTest.java
Expand Up @@ -4,8 +4,10 @@
*/
package org.mockito;

import org.junit.Ignore;
import org.junit.Test;

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

@Test
Expand Down
Expand Up @@ -10,8 +10,10 @@
import static org.mockito.Mockito.when;

import org.junit.Assume;
import org.junit.Ignore;
import org.junit.Test;

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

private static final int STACK_TRACE_DEPTH = 1000;
Expand Down