Skip to content

Commit cd1a991

Browse files
committed
Disable cluster unit test that transiently hangs
1 parent 0261a53 commit cd1a991

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

com.oracle.truffle.r.test/src/com/oracle/truffle/r/test/library/base/TestSharedCluster.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
package com.oracle.truffle.r.test.library.base;
2424

2525
import org.junit.Before;
26+
import org.junit.Ignore;
2627
import org.junit.Test;
2728

2829
import com.oracle.truffle.r.test.TestBase;
@@ -36,7 +37,9 @@ public void beforeMethod() {
3637
}
3738

3839
@Test
40+
@Ignore("Transient hangs")
3941
public void testSharedCluster() {
42+
// TODO: debug and unignore
4043
assertEval(TestBase.template(
4144
"library(parallel); fun <- function(data) { cl <- makeCluster(%0, ifelse(exists('engine', where=R.version),'SHARED','PSOCK')); parLapply(cl, data, function(x) x+1); stopCluster(cl) }; fun(1:100)",
4245
"123456789".split("")));

0 commit comments

Comments
 (0)