Skip to content

Commit e43900f

Browse files
committed
Revert "XXX: Temporarily disable tests"
This reverts commit bfae8d9.
1 parent caa76e5 commit e43900f

File tree

6 files changed

+274
-10
lines changed

6 files changed

+274
-10
lines changed

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

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

5050
import org.graalvm.polyglot.Engine;
5151
import org.graalvm.polyglot.Source;
52-
import org.junit.Ignore;
5352
import org.junit.Test;
5453

5554
import com.oracle.graal.python.test.PythonTests;
5655

5756
public class SharedEngineMultithreadingBenchmarkTest extends SharedEngineMultithreadingTestBase {
58-
@Ignore
5957
@Test
6058
public void testRichardsInParallelInMultipleContexts() throws Throwable {
6159
try (Engine engine = Engine.newBuilder().build()) {

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

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

4747
import org.graalvm.polyglot.Engine;
4848
import org.junit.Assert;
49-
import org.junit.Ignore;
5049
import org.junit.Test;
5150

5251
public class SharedEngineMultithreadingImportsTest extends SharedEngineMultithreadingTestBase {
5352
private static final int RUNS_COUNT = RUNS_COUNT_FACTOR;
5453

55-
@Ignore
5654
@Test
5755
public void testImportsInParallel() throws InterruptedException, ExecutionException {
5856
ExecutorService executorService = createExecutorService();

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

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

5756
public class SharedEngineMultithreadingShapeTransitionsTest extends SharedEngineMultithreadingTestBase {
5857
private static final int RUNS_COUNT = RUNS_COUNT_FACTOR;
5958
private static final int PROPERTIES_COUNT = 20;
6059
private static final int SHARED_PREFIX_COUNT = PROPERTIES_COUNT - 10;
6160

62-
@Ignore
6361
@Test
6462
public void testShapeTransitionsInParallel() throws InterruptedException, ExecutionException {
6563
ExecutorService executorService = createExecutorService();

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

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

5352
public class SharedEngineMultithreadingSimpleLambdaTest extends SharedEngineMultithreadingTestBase {
5453
private static final int RUNS_COUNT = 2 * RUNS_COUNT_FACTOR;
5554

56-
@Ignore
5755
@Test
5856
public void testLambdaInParallelCtxCreatedInMainThread() throws InterruptedException, ExecutionException {
5957
ExecutorService executorService = createExecutorService();
@@ -85,7 +83,6 @@ public void testLambdaInParallelCtxCreatedInMainThread() throws InterruptedExcep
8583
}
8684
}
8785

88-
@Ignore
8986
@Test
9087
public void testLambdaInParallelCtxCreatedInWorkerThread() throws InterruptedException, ExecutionException {
9188
ExecutorService executorService = createExecutorService();
@@ -112,7 +109,6 @@ public void testLambdaInParallelCtxCreatedInWorkerThread() throws InterruptedExc
112109
}
113110
}
114111

115-
@Ignore
116112
@Test
117113
public void testLambdaInParallelSharedContexts() throws InterruptedException, ExecutionException {
118114
ExecutorService executorService = createExecutorService();

0 commit comments

Comments
 (0)