Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import test.TestingFramework;
import test.core.BoomerangTestRunnerInterceptor;
import test.core.QueryMethods;
import test.core.TestConfig;
import test.core.TestParameters;
import test.core.selfrunning.AllocatedObject;

@ExtendWith(BoomerangTestRunnerInterceptor.class)
@TestConfig(includedClasses = {"java.lang.Thread"})
public class InnerClassWithThreadTest {

private static ThreadingAlloc param;
Expand Down Expand Up @@ -73,6 +77,8 @@ public void run() {
}

@Test
@TestParameters(
skipFramework = {TestingFramework.Framework.SOOT_UP, TestingFramework.Framework.OPAL})
public void threadQuery() {
for (int i = 1; i < 3; i++) {
Thread t = new MyThread();
Expand Down