Skip to content
Snippets Groups Projects
Commit e7fe0bef authored by Stepan Sindelar's avatar Stepan Sindelar
Browse files

[GR-2798] Update Truffle and unignore the cluster tests.

PullRequest: fastr/1633
parents a593e1ac eb0d4a5d
No related branches found
No related tags found
No related merge requests found
......@@ -86506,6 +86506,33 @@ $e
#{ pi/180; pi }
[1] 3.141593
 
##com.oracle.truffle.r.test.library.base.TestSharedCluster.testSharedCluster#
#library(parallel); fun <- function(data) { cl <- makeCluster(1, ifelse(exists('engine', where=R.version),'SHARED','PSOCK')); parLapply(cl, data, function(x) x+1); stopCluster(cl) }; fun(1:100)
##com.oracle.truffle.r.test.library.base.TestSharedCluster.testSharedCluster#
#library(parallel); fun <- function(data) { cl <- makeCluster(2, ifelse(exists('engine', where=R.version),'SHARED','PSOCK')); parLapply(cl, data, function(x) x+1); stopCluster(cl) }; fun(1:100)
##com.oracle.truffle.r.test.library.base.TestSharedCluster.testSharedCluster#
#library(parallel); fun <- function(data) { cl <- makeCluster(3, ifelse(exists('engine', where=R.version),'SHARED','PSOCK')); parLapply(cl, data, function(x) x+1); stopCluster(cl) }; fun(1:100)
##com.oracle.truffle.r.test.library.base.TestSharedCluster.testSharedCluster#
#library(parallel); fun <- function(data) { cl <- makeCluster(4, ifelse(exists('engine', where=R.version),'SHARED','PSOCK')); parLapply(cl, data, function(x) x+1); stopCluster(cl) }; fun(1:100)
##com.oracle.truffle.r.test.library.base.TestSharedCluster.testSharedCluster#
#library(parallel); fun <- function(data) { cl <- makeCluster(5, ifelse(exists('engine', where=R.version),'SHARED','PSOCK')); parLapply(cl, data, function(x) x+1); stopCluster(cl) }; fun(1:100)
##com.oracle.truffle.r.test.library.base.TestSharedCluster.testSharedCluster#
#library(parallel); fun <- function(data) { cl <- makeCluster(6, ifelse(exists('engine', where=R.version),'SHARED','PSOCK')); parLapply(cl, data, function(x) x+1); stopCluster(cl) }; fun(1:100)
##com.oracle.truffle.r.test.library.base.TestSharedCluster.testSharedCluster#
#library(parallel); fun <- function(data) { cl <- makeCluster(7, ifelse(exists('engine', where=R.version),'SHARED','PSOCK')); parLapply(cl, data, function(x) x+1); stopCluster(cl) }; fun(1:100)
##com.oracle.truffle.r.test.library.base.TestSharedCluster.testSharedCluster#
#library(parallel); fun <- function(data) { cl <- makeCluster(8, ifelse(exists('engine', where=R.version),'SHARED','PSOCK')); parLapply(cl, data, function(x) x+1); stopCluster(cl) }; fun(1:100)
##com.oracle.truffle.r.test.library.base.TestSharedCluster.testSharedCluster#
#library(parallel); fun <- function(data) { cl <- makeCluster(9, ifelse(exists('engine', where=R.version),'SHARED','PSOCK')); parLapply(cl, data, function(x) x+1); stopCluster(cl) }; fun(1:100)
##com.oracle.truffle.r.test.library.base.TestSimpleArithmetic.testArithmeticUpdate#
#{ x <- 3 ; f <- function(z) { if (z) { x <- 1 } ; x <- 1L + x ; x } ; f(FALSE) }
[1] 4
......@@ -23,7 +23,6 @@
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;
......@@ -37,9 +36,7 @@ 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("")));
......
......@@ -7,7 +7,7 @@ suite = {
{
"name" : "truffle",
"subdir" : True,
"version" : "2c597bf501948b6f46856b754a98928b34da9037",
"version" : "7a94c71966b0c41780035f80020563949180ef47",
"urls" : [
{"url" : "https://github.com/graalvm/graal", "kind" : "git"},
{"url" : "https://curio.ssw.jku.at/nexus/content/repositories/snapshots", "kind" : "binary"},
......
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