Skip to content

Commit bfae8d9

Browse files
otethaltimfel
authored andcommitted
XXX: Temporarily disable tests
1 parent 28a0685 commit bfae8d9

File tree

6 files changed

+10
-274
lines changed

6 files changed

+10
-274
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/engine/SharedEngineMultithreadingBenchmarkTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,13 @@
4949

5050
import org.graalvm.polyglot.Engine;
5151
import org.graalvm.polyglot.Source;
52+
import org.junit.Ignore;
5253
import org.junit.Test;
5354

5455
import com.oracle.graal.python.test.PythonTests;
5556

5657
public class SharedEngineMultithreadingBenchmarkTest extends SharedEngineMultithreadingTestBase {
58+
@Ignore
5759
@Test
5860
public void testRichardsInParallelInMultipleContexts() throws Throwable {
5961
try (Engine engine = Engine.newBuilder().build()) {

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/engine/SharedEngineMultithreadingImportsTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,13 @@
4646

4747
import org.graalvm.polyglot.Engine;
4848
import org.junit.Assert;
49+
import org.junit.Ignore;
4950
import org.junit.Test;
5051

5152
public class SharedEngineMultithreadingImportsTest extends SharedEngineMultithreadingTestBase {
5253
private static final int RUNS_COUNT = RUNS_COUNT_FACTOR;
5354

55+
@Ignore
5456
@Test
5557
public void testImportsInParallel() throws InterruptedException, ExecutionException {
5658
ExecutorService executorService = createExecutorService();

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/engine/SharedEngineMultithreadingShapeTransitionsTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,15 @@
5151
import org.graalvm.polyglot.Source;
5252
import org.graalvm.polyglot.Value;
5353
import org.junit.Assert;
54+
import org.junit.Ignore;
5455
import org.junit.Test;
5556

5657
public class SharedEngineMultithreadingShapeTransitionsTest extends SharedEngineMultithreadingTestBase {
5758
private static final int RUNS_COUNT = RUNS_COUNT_FACTOR;
5859
private static final int PROPERTIES_COUNT = 20;
5960
private static final int SHARED_PREFIX_COUNT = PROPERTIES_COUNT - 10;
6061

62+
@Ignore
6163
@Test
6264
public void testShapeTransitionsInParallel() throws InterruptedException, ExecutionException {
6365
ExecutorService executorService = createExecutorService();

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/engine/SharedEngineMultithreadingSimpleLambdaTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,13 @@
4747
import org.graalvm.polyglot.Source;
4848
import org.graalvm.polyglot.Value;
4949
import org.junit.Assert;
50+
import org.junit.Ignore;
5051
import org.junit.Test;
5152

5253
public class SharedEngineMultithreadingSimpleLambdaTest extends SharedEngineMultithreadingTestBase {
5354
private static final int RUNS_COUNT = 2 * RUNS_COUNT_FACTOR;
5455

56+
@Ignore
5557
@Test
5658
public void testLambdaInParallelCtxCreatedInMainThread() throws InterruptedException, ExecutionException {
5759
ExecutorService executorService = createExecutorService();
@@ -83,6 +85,7 @@ public void testLambdaInParallelCtxCreatedInMainThread() throws InterruptedExcep
8385
}
8486
}
8587

88+
@Ignore
8689
@Test
8790
public void testLambdaInParallelCtxCreatedInWorkerThread() throws InterruptedException, ExecutionException {
8891
ExecutorService executorService = createExecutorService();
@@ -109,6 +112,7 @@ public void testLambdaInParallelCtxCreatedInWorkerThread() throws InterruptedExc
109112
}
110113
}
111114

115+
@Ignore
112116
@Test
113117
public void testLambdaInParallelSharedContexts() throws InterruptedException, ExecutionException {
114118
ExecutorService executorService = createExecutorService();

0 commit comments

Comments
 (0)