Skip to content
Snippets Groups Projects
Commit cd1a991e authored by stepan's avatar stepan
Browse files

Disable cluster unit test that transiently hangs

parent 0261a531
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@
package com.oracle.truffle.r.test.library.base;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import com.oracle.truffle.r.test.TestBase;
......@@ -36,7 +37,9 @@ public class TestSharedCluster extends TestBase {
}
@Test
@Ignore("Transient hangs")
public void testSharedCluster() {
// TODO: debug and unignore
assertEval(TestBase.template(
"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)",
"123456789".split("")));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment